From c1d97fcc75689f05cc850930eeb9f10df2242d28 Mon Sep 17 00:00:00 2001 From: Julian Dominguez-Schatz Date: Mon, 13 Oct 2025 09:20:18 -0700 Subject: [PATCH] Allow size-compare action to run immediately after artifact upload (#5912) * Allow size-compare action to run immediately after artifact upload * Add release notes --- .github/workflows/size-compare.yml | 2 ++ upcoming-release-notes/5912.md | 6 ++++++ 2 files changed, 8 insertions(+) create mode 100644 upcoming-release-notes/5912.md diff --git a/.github/workflows/size-compare.yml b/.github/workflows/size-compare.yml index 25446a4959..e9eec754f2 100644 --- a/.github/workflows/size-compare.yml +++ b/.github/workflows/size-compare.yml @@ -54,6 +54,7 @@ jobs: with: branch: ${{github.base_ref}} workflow: build.yml + workflow_conclusion: '' # ignore the conclusion of the workflow, since we already checked it name: build-stats path: base @@ -62,6 +63,7 @@ jobs: with: pr: ${{github.event.pull_request.number}} workflow: build.yml + workflow_conclusion: '' # ignore the conclusion of the workflow, since we already checked it name: build-stats path: head allow_forks: true diff --git a/upcoming-release-notes/5912.md b/upcoming-release-notes/5912.md new file mode 100644 index 0000000000..e1b49ffc49 --- /dev/null +++ b/upcoming-release-notes/5912.md @@ -0,0 +1,6 @@ +--- +category: Maintenance +authors: [jfdoming] +--- + +Allow size-compare action to run immediately after artifact upload