fix: remove [skip ci] from publish workflow#822
Merged
aaronpowell merged 1 commit intostagedfrom Feb 26, 2026
Merged
Conversation
The [skip ci] tag in the publish commit message was preventing downstream workflows (e.g. deploy-website.yml) from triggering on the push to main. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR removes the [skip ci] tag from the publish workflow's commit message to enable downstream workflow triggering. The publish workflow runs when code is pushed to the staged branch, materializes plugin files, generates marketplace artifacts, and force-pushes the result to main. Previously, the [skip ci] tag prevented any workflows from triggering on that push to main, blocking the website deployment and webhook notifications.
Changes:
- Removed
[skip ci]from the commit message in the publish workflow to allow downstream workflows to trigger on push to main
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.
The
[skip ci]tag in the publish workflow's commit message was preventing downstream workflows (likedeploy-website.yml) from triggering on the push tomain.This removes
[skip ci]so the website deploy and any othermain-branch workflows fire as expected. Verified no other workflows will be unintentionally triggered.