Otel judgment.agent #599
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Blocked PR | |
on: | |
pull_request: | |
types: | |
- opened | |
- labeled | |
- unlabeled | |
- synchronize | |
jobs: | |
fail-for-blocked: | |
if: contains(github.event.pull_request.labels.*.name, 'Blocked') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Fail if PR is blocked | |
run: | | |
echo "This PR is currently blocked. Please unblock it before merging." | |
exit 1 |