ci: add workflow_run trigger to publish-packages.yml#36
Merged
Conversation
Fixes publish-packages.yml never triggering after release.yml creates a GitHub Release via GITHUB_TOKEN (GitHub intentionally suppresses the release:published event in that case). - Add workflow_run trigger firing when the "Release" workflow completes - Update both job if: conditions to handle workflow_run, release, and workflow_dispatch event sources - Add prerelease check step to publish-crates-io with skip output so all costly steps are skipped for prerelease tags - Update Get release tag step in publish-npm to extract tag from head_branch when triggered by workflow_run, with prerelease guard - Retain release:published trigger for manually-created releases - All action SHAs remain pinned (no REF-148 regressions) Co-Authored-By: Paperclip <noreply@paperclip.ing>
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.
Fixes publish-packages.yml never triggering after release.yml creates a GitHub Release via GITHUB_TOKEN (GitHub intentionally suppresses the release:published event in that case).