diff --git a/.github/workflows/check-if-pr-has-label.yml b/.github/workflows/check-if-pr-has-label.yml new file mode 100644 index 00000000000000..0501d0c1839366 --- /dev/null +++ b/.github/workflows/check-if-pr-has-label.yml @@ -0,0 +1,16 @@ +name: Check if PR has label + +on: + pull_request: + types: [opened, reopened, labeled, unlabeled] + +jobs: + test-label-applied: + # Tests that label is added on the PR + runs-on: ubuntu-latest + steps: + - uses: mnajdova/github-action-required-labels@v2.0 + with: + mode: minimum + count: 1 + labels: "" \ No newline at end of file