| Message ID | 20251103164158.3062744-1-ross.burton@arm.com |
|---|---|
| State | New |
| Headers | show |
| Series | CI: only run pending-updates on master | expand |
On Mon, 03 Nov 2025 16:41:58 +0000, Ross Burton wrote: > This job takes a few minutes and isn't useful unless it's being ran for > master, or is being actively worked on. > > Applied, thanks! [1/1] CI: only run pending-updates on master commit: 82d64955f14ff11319ceac27c7b46ee7ffadd1ee Best regards,
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c06b05e474..d7c214b673 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -253,6 +253,11 @@ musca-s1: pending-updates: extends: .setup + # Only run this job for the default branch (master), or if forced with + # BUILD_FORCE_PENDING_UPDATES. + rules: + - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH + - if: $BUILD_FORCE_PENDING_UPDATES != null artifacts: paths: - update-report
This job takes a few minutes and isn't useful unless it's being ran for master, or is being actively worked on. Signed-off-by: Ross Burton <ross.burton@arm.com> --- .gitlab-ci.yml | 5 +++++ 1 file changed, 5 insertions(+)