Skip to content

Commit ffd9a42

Browse files
authored
Merge branch 'main' into sirtimid/pimlico-optional-away-wallet
2 parents bf15c41 + 86f03c3 commit ffd9a42

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,7 @@ jobs:
232232
if: ${{ always() }}
233233
needs:
234234
- detect-changes
235+
- check-skip-merge-queue
235236
- check-workflows
236237
- analyse-code
237238
- lint-build-test
@@ -261,8 +262,10 @@ jobs:
261262
fi
262263
263264
# check-workflows runs for both CI and code changes; require it when either is present
265+
# It is intentionally skipped when the merge queue decides to skip (PR already up-to-date)
264266
if [[ "$HAS_CI" == "true" || "$HAS_CODE" == "true" ]]; then
265-
if [[ "${{ needs.check-workflows.result }}" != "success" ]]; then
267+
if [[ "${{ needs.check-skip-merge-queue.outputs.skip-merge-queue }}" != "true" \
268+
&& "${{ needs.check-workflows.result }}" != "success" ]]; then
266269
echo "check-workflows did not succeed"
267270
exit 1
268271
fi

0 commit comments

Comments
 (0)