This repository was archived by the owner on Apr 17, 2025. It is now read-only.
Bump golang.org/x/net from 0.36.0 to 0.38.0 #1766
This file contains hidden or 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") or test("enhancement") or test("critical"))' >/dev/null <<< $LABELS; then | |
| echo "::error ::Please set either kind/feature, kind/improvement, kind/bug, kind/docs, area/tech-debt, enhancement, critical, or skip-release-notes as label" | |
| exit 1 | |
| fi |