From fb6663776522ff85eb1f86f8da27168488a4ff03 Mon Sep 17 00:00:00 2001 From: Johnpaul Chiwetelu <49923152+Myestery@users.noreply.github.com> Date: Thu, 23 Oct 2025 06:43:07 +0100 Subject: [PATCH] Don't remove labels if initial jobs were skipped (#6218) This pull request makes a small change to the `.github/workflows/pr-update-playwright-expectations.yaml` file, removing the unconditional `if: always()` condition from the `merge-and-commit` job. This means the job will now only run if its dependencies succeed, rather than always running regardless of previous job outcomes. --- .github/workflows/pr-update-playwright-expectations.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/pr-update-playwright-expectations.yaml b/.github/workflows/pr-update-playwright-expectations.yaml index 8d82bd675..8874703ae 100644 --- a/.github/workflows/pr-update-playwright-expectations.yaml +++ b/.github/workflows/pr-update-playwright-expectations.yaml @@ -141,7 +141,6 @@ jobs: merge-and-commit: needs: [setup, update-snapshots-sharded] runs-on: ubuntu-latest - if: always() steps: - name: Checkout repository uses: actions/checkout@v5