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 c340b97
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/required_status_check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# 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 ]
steps:
- uses: kamilchodola/wait-for-workflow-action@1.1.0
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
workflow_id: ${{ matrix.workflow }}.yml
max_wait_minutes: '60'

0 comments on commit c340b97

Please sign in to comment.