diff --git a/.github/workflows/label-checker.yml b/.github/workflows/label-checker.yml new file mode 100644 index 0000000000..c60d676cae --- /dev/null +++ b/.github/workflows/label-checker.yml @@ -0,0 +1,19 @@ +name: Label Checker +on: + pull_request: + types: + - opened + - labeled + - unlabeled + branches: + - master + +jobs: + check_labels: + name: PR should not have a blocked label + runs-on: ubuntu-latest + steps: + - uses: docker://agilepathway/pull-request-label-checker:latest + with: + none_of: blocked + repo_token: ${{ secrets.GITHUB_TOKEN }}