From 6aaf3fba8db4729aaf93128c066b7e4919900f8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakob=20M=C3=B6ller?= Date: Thu, 28 Nov 2024 18:10:27 +0100 Subject: [PATCH] chore: changes label check to any_of (#1162) #### What this PR does / why we need it Uses any_of as per https://github.com/agilepathway/label-checker?tab=readme-ov-file#checks because its technically possible that a PR fits multiple kinds (e.g. chore + dependency) #### Which issue(s) this PR fixes --- .github/workflows/pull-request.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index cc2ad2bf8..921f37fe8 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -158,5 +158,5 @@ jobs: - name: PRs should have at least one qualifying label uses: docker://agilepathway/pull-request-label-checker:latest with: - one_of: kind/chore,kind/bugfix,kind/feature,kind/dependency,kind/refactor + any_of: kind/chore,kind/bugfix,kind/feature,kind/dependency,kind/refactor repo_token: ${{ secrets.GITHUB_TOKEN }}