summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuriy Andamasov <yuriy@vyos.io>2026-05-31 10:20:41 +0300
committerYuriy Andamasov <yuriy@vyos.io>2026-05-31 10:20:41 +0300
commit0f762cf1790172c8b330332c092261430e3850be (patch)
tree83d1c89e6061ea77b3228efde0822e2ed86a7534
parent9d5f7177d4fecc5b8e560f53ce253dfb0a3a1d73 (diff)
downloadvyos-nightly-build-claude/is504-nightly-current-refs.tar.gz
vyos-nightly-build-claude/is504-nightly-current-refs.zip
ci: T8947: fix current→rolling branch-ref drift in nightly-build (rollout 1c follow-up)claude/is504-nightly-current-refs
Rollout 1c (IS-503) renamed this repo's default branch current→rolling but did not edit workflow content. Two job-level guards still gate on the old branch name, so they never fire on `rolling`: - Slack failure-notification job: `github.ref == 'refs/heads/current'` - retag/publish job: `github.ref_name == 'current'` Both now reference `rolling`. Companion to IS-504 / T8947. 🤖 Generated by [robots](https://vyos.io)
-rw-r--r--.github/workflows/nightly-build.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/nightly-build.yml b/.github/workflows/nightly-build.yml
index 8d49255..1e84fb5 100644
--- a/.github/workflows/nightly-build.yml
+++ b/.github/workflows/nightly-build.yml
@@ -306,7 +306,7 @@ jobs:
- test_encrypted_config_tpm
- build_generic_iso
runs-on: ubuntu-24.04
- if: ${{ failure() && (github.ref == 'refs/heads/current') && !inputs.SKIP_SLACK_NOTIFICATIONS }}
+ if: ${{ failure() && (github.ref == 'refs/heads/rolling') && !inputs.SKIP_SLACK_NOTIFICATIONS }}
steps:
- uses: actions/download-artifact@v4
with:
@@ -388,7 +388,7 @@ jobs:
runs-on: ubuntu-24.04
permissions:
contents: write
- if: github.ref_name == 'current'
+ if: github.ref_name == 'rolling'
steps:
- uses: actions/checkout@v4
- name: Clone vyos-build repo