Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/quality-gate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,14 @@ on:
workflow_call:

concurrency:
group: quality-${{ github.ref }}
# github.workflow is the CALLER's workflow name ("Quality Gate" on a direct
# push/PR, "Publish" when invoked via `uses:` from publish.yml). Keying the
# group on it keeps the publish-embedded gate out of the standalone gate's
# group, so the release push's gate isn't cancelled by the follow-up publish
# run (which renders as a red ✗ on main even though nothing failed).
# NOTE: this relies on each caller declaring an explicit `name:` — without one
# GitHub falls back to the file path and the group silently changes.
group: quality-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ See [docs/RELEASING.md](docs/RELEASING.md) for the release procedure.
- Added the NASDE branding source assets and updated the README and
documentation website to use the new brand. ([#73])

### Fixed
- Quality Gate no longer shows a spurious red ✗ on `main` after a release: the
concurrency group is now scoped per calling workflow so the publish-embedded
gate no longer cancels the standalone push-triggered one. ([#74])

## [0.5.0] — 2026-06-24

### Added
Expand Down Expand Up @@ -602,4 +607,5 @@ Initial release under the **nasde-toolkit** name (rebrand from
[#70]: https://github.com/NoesisVision/nasde-toolkit/pull/70
[#71]: https://github.com/NoesisVision/nasde-toolkit/pull/71
[#73]: https://github.com/NoesisVision/nasde-toolkit/pull/73
[#74]: https://github.com/NoesisVision/nasde-toolkit/pull/74
[gh-litellm-2026-04]: https://github.com/BerriAI/litellm/security/advisories/GHSA-xqmj-j6mv-4862