-
Why are you starting this discussion?Question What GitHub Actions topic or product is this about?Misc Discussion DetailsI'm using zest releaser for releasing python projects. To do so, its executable is ran from an action itself, which causes couple of version change commits, and a tag. The tool adds How to make sure a tag push event, which is generated by a workflow, still triggers another workflow execution? And to be clear, I have confirmed it is in fact the commit message that's causing the tag push to be ignored. Changing message to |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
This comment was marked as off-topic.
This comment was marked as off-topic.
-
Beta Was this translation helpful? Give feedback.

You can’t force GitHub to ignore
[skip ci]on a tag push, but you can avoid the problem by triggering your second workflow from a different event. The easiest fix is to useon: createoron: releaseand then check that the created ref is a tag. Those events aren’t blocked by commit messages, so your tag will always trigger the workflow even if the commit has[skip ci].