Skip to content

Commit

Permalink
Add required status check workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
2opremio committed Jun 17, 2024
1 parent 37c9e84 commit 7e6307a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/required_status_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# workaround to simplify terraform management of required status checks,
# see https://github.com/orgs/community/discussions/12377
name: required_status_check
on:
push:
branches: [ main, release/** ]
pull_request:

jobs:
wait:
strategy:
matrix:
workflow: [ golangci-lint, rust, soroban-rpc ]
uses: kamilchodola/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
workflow_id: ${{ matrix.workflow }}.yml
max_wait_minutes: '60'

0 comments on commit 7e6307a

Please sign in to comment.