From 5fd66eb6086c6c115c98b1a62bea9c4497f52e62 Mon Sep 17 00:00:00 2001 From: Maarten Zuidhoorn Date: Fri, 7 Mar 2025 14:30:19 +0100 Subject: [PATCH 1/2] Always run commit step in update PR workflow --- .github/workflows/update-pull-request.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/update-pull-request.yml b/.github/workflows/update-pull-request.yml index 36c36ccfc5..45084ece04 100644 --- a/.github/workflows/update-pull-request.yml +++ b/.github/workflows/update-pull-request.yml @@ -223,6 +223,7 @@ jobs: commit-result: name: Commit result runs-on: ubuntu-latest + if: ${{ !failure() && !cancelled() && needs.is-fork-pull-request.outputs.IS_FORK == 'false' }} needs: - prepare - dedupe-yarn-lock From b46e4f2490bcd7e8652b25d33c9a12317491db46 Mon Sep 17 00:00:00 2001 From: Maarten Zuidhoorn Date: Fri, 7 Mar 2025 14:35:44 +0100 Subject: [PATCH 2/2] Add missing needs --- .github/workflows/update-pull-request.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/update-pull-request.yml b/.github/workflows/update-pull-request.yml index 45084ece04..30bf4af82e 100644 --- a/.github/workflows/update-pull-request.yml +++ b/.github/workflows/update-pull-request.yml @@ -225,6 +225,7 @@ jobs: runs-on: ubuntu-latest if: ${{ !failure() && !cancelled() && needs.is-fork-pull-request.outputs.IS_FORK == 'false' }} needs: + - is-fork-pull-request - prepare - dedupe-yarn-lock - regenerate-lavamoat-policies