From 9af9e0f98011ae1d51addaf5e1051a6378b2a490 Mon Sep 17 00:00:00 2001 From: Alex Rudenko Date: Wed, 18 Dec 2024 15:03:24 +0100 Subject: [PATCH] ci: try adding the puppeteer label last (#2910) Some race condition in GitHub Actions seems to prevent the Puppeteer workflow from detecting the Puppeteer label after the Puppeteer-Required label was added. Let us try to change the order --- .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 2699c630a0..a1013010a3 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -20,7 +20,7 @@ jobs: permissions: pull-requests: write steps: - - run: gh pr edit "$NUMBER" --add-label "puppeteer" --add-label "puppeteer-required" + - run: gh pr edit "$NUMBER" --add-label "puppeteer-required" --add-label "puppeteer" env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_REPO: ${{ github.repository }}