Skip to content

Otel judgment.agent #599

Otel judgment.agent

Otel judgment.agent #599

Workflow file for this run

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