[CI/CD] Sync develop-auto CI workflows to develop for CI parity#1111
Merged
Conversation
develop-auto's CI workflows lagged develop by one Dependabot bump (#620): codecov/codecov-action v4->v7 in ci.yml and create-github-app-token v2->v3 in changeset-release.yml. The /sa-implement preflight ci-parity gate (code 64) requires the workflow files to match across both branches so PRs into develop-auto are gated identically to develop. This copies develop's exact versions of the two files; no logic or gate changes. Part of #1110
This PR only touches CI workflow YAML, so no package version bump is warranted. The check-changeset gate still requires a changeset file on non-Dependabot PRs into develop-auto, so add an empty one. Part of #1110
3 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Restores CI parity between
developanddevelop-autoso the/sa-implementdaemon preflight (code 64 ci-parity gate) passes.develop-autolaggeddevelopby a single Dependabot GitHub-Actions bump (#620) that never propagated:.github/workflows/ci.yml—codecov/codecov-action@v4 → v7(×4).github/workflows/changeset-release.yml—actions/create-github-app-token@v2 → v3(×1)This copies
develop's exact versions of the two files. No logic, job, or gate changes — pure action version bumps. An empty changeset is included since this is CI-only.Verification
git diff origin/develop -- .github/workflows/ci.yml .github/workflows/changeset-release.yml→ empty (byte-match).develop-autorequired checks expected green.Closes #1110