Skip to content

Commit

Permalink
[ci] do not block pull requests on cache_bitstreams
Browse files Browse the repository at this point in the history
Signed-off-by: Gary Guo <[email protected]>
  • Loading branch information
nbdd0121 committed Dec 17, 2024
1 parent d30abba commit 5e3b6b3
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -686,3 +686,22 @@ jobs:
- name: Check for unrunnable tests
run: ./ci/scripts/check-unrunnable-tests.sh
continue-on-error: true

# The branch protection will gate on "Merge blocker" and we use these jobs with conditional names to
# gate on different jobs for merge queue and pull request checks.
merge_blocker_pr:
name: Merge blocker${{ github.event_name != 'pull_request' && ' (Skipped)' || '' }}
runs-on: ubuntu-latest
needs: quick_lint
if: ${{ github.event_name == 'pull_request' }}
steps:
- name: Complete
run: 'true'
merge_blocker_merge:
name: Merge blocker${{ github.event_name != 'merge_group' && ' (Skipped)' || '' }}
runs-on: ubuntu-latest
needs: cache_bitstreams
if: ${{ github.event_name == 'merge_group' }}
steps:
- name: Complete
run: 'true'

0 comments on commit 5e3b6b3

Please sign in to comment.