From be6fe1d7ecae2275187746d8c7eaff762616df6d Mon Sep 17 00:00:00 2001 From: Raffi1202 Date: Fri, 11 Sep 2026 17:07:15 +0200 Subject: [PATCH] ci: only consume artifacts from the real firmware workflow --- .github/workflows/ci-size-report.yml | 1 + .github/workflows/pr-test-builds.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/ci-size-report.yml b/.github/workflows/ci-size-report.yml index f095124a0b9..4f172f18afd 100644 --- a/.github/workflows/ci-size-report.yml +++ b/.github/workflows/ci-size-report.yml @@ -137,6 +137,7 @@ jobs: runs-on: ubuntu-latest if: > github.event.workflow_run.name == 'Build firmware' && + github.event.workflow_run.path == '.github/workflows/ci.yml' && github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' concurrency: diff --git a/.github/workflows/pr-test-builds.yml b/.github/workflows/pr-test-builds.yml index 19867077aa5..ab47c0e092a 100644 --- a/.github/workflows/pr-test-builds.yml +++ b/.github/workflows/pr-test-builds.yml @@ -16,6 +16,7 @@ jobs: # Only act on pull_request-triggered runs that succeeded. if: > github.event.workflow_run.event == 'pull_request' && + github.event.workflow_run.path == '.github/workflows/ci.yml' && github.event.workflow_run.conclusion == 'success' # Prevent concurrent runs for the same PR branch racing on the # release delete/create cycle.