label.yaml 495 B

1234567891011121314151617
  1. name: Check Labels
  2. on:
  3. pull_request:
  4. types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled]
  5. jobs:
  6. label-check:
  7. runs-on: ubuntu-latest
  8. steps:
  9. - uses: mheap/github-action-required-labels@v5
  10. with:
  11. mode: exactly
  12. count: 0
  13. labels: "work in progress, do not merge"
  14. add_comment: true
  15. message: "This PR is being prevented from merging because it presents one of the blocking labels: {{ provided }}."