From a9a1e7680afd4b2276d7e835a45e04a734a9f447 Mon Sep 17 00:00:00 2001 From: NovemLinguae Date: Fri, 12 Jan 2024 01:00:20 -0800 Subject: [PATCH] Fix PR labeler CI Fix #1907 I can't easily figure out how to upgrade the syntax of https://github.com/wikimedia-gadgets/twinkle/blob/master/.github/labels.yml from v4 to v5. As a band aid fix to get our CI working, force the PR labeler to use v4. --- .github/workflows/labeler.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index 6c899ddc2..7ce15b8cc 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -6,7 +6,7 @@ jobs: label: runs-on: ubuntu-latest steps: - - uses: actions/labeler@main + - uses: actions/labeler@v4 with: configuration-path: ".github/labels.yml" repo-token: "${{ secrets.GITHUB_TOKEN }}"