Refactor release workflows #20181
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check PR labels | |
on: | |
pull_request: | |
types: [labeled, unlabeled, opened, edited, synchronize] | |
jobs: | |
enforce-kind: | |
name: Enforce a valid PR category | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check if a valid PR category is present | |
env: | |
LABELS: ${{ toJson(github.event.pull_request.labels.*.name) }} | |
run: | | |
if ! jq --exit-status 'any(test("kind/feature") or test("kind/docs") or test("kind/improvement") or test("kind/bug") or test("skip-release-notes") or test("area/tech-debt"))' >/dev/null <<< $LABELS; then | |
echo "::error ::Please set either kind/feature, kind/improvement, kind/bug, kind/docs, area/tech-debt or skip-release-notes as label" | |
exit 1 | |
fi |