You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
publish-canary.yml: Changed from workflow_call to direct triggers (schedule and workflow_dispatch), switched to a dedicated canary-release environment (instead of the shared release environment), and fixed the default tag fallback (inputs.tag || 'canary') to handle scheduled runs where no input is provided.
publish-release.yml: Changed from workflow_call to a direct release: [published] trigger, removing the need to pass secrets explicitly. Also adds a new refresh-context7 job that triggers a Context7 documentation refresh after a successful NPM publish.
publish.yml: Removed entirely, as it is no longer needed as a central dispatcher.
.github/zizmor.yml: Removed the dangerous-triggers ignore rule for dependabot-pnpm-lock.yml since the previously flagged workflow has been removed.
🔄 Regenerate and Update Summary
✏️ Insert as PR Description (deletes this comment)
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
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.
Context
Replaces #2148.
We no longer need a single entry workflow for canary releases and can use different envs for canary and stable releases: https://github.blog/changelog/2026-09-03-multiple-trusted-publishing-configurations-for-npm/
What this PR does and why it is needed