diff --git a/.github/workflows/label-enforcement.yml b/.github/workflows/label-enforcement.yml new file mode 100644 index 00000000000..5ad1f6ff8d9 --- /dev/null +++ b/.github/workflows/label-enforcement.yml @@ -0,0 +1,22 @@ +name: Enforce Labels +on: + pull_request: + branches: [ "main" ] + +jobs: + label_checker: + name: Please include labels on your pull request + runs-on: ubuntu-latest + timeout-minutes: 5 + + steps: + - name: test + run: | + LABELS=`gh api -H "Accept: application/vnd.github+json" /repos/oneapi-src/oneDAL/issues/${{ github.event.pull_request.number }}/labels | jq '[.[].name]'` + echo $LABELS + if [[ $LABELS == "[]" ]] || [[ $LABELS == "[\"RFC\"]" ]]; then + echo "::error::No label set on the pull request" + exit 1 + fi + env: + GH_TOKEN: ${{ github.token }}