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
Problem:
When I use this action, a new commit is added to the main branch, which is trigger another workflow. The action doesn't release a new branch because it's just a chore commit. But I interested in preventing the trigger of the workflow all toghter.
Problem:
When I use this action, a new commit is added to the
main
branch, which is trigger another workflow. The action doesn't release a new branch because it's just achore
commit. But I interested in preventing the trigger of the workflow all toghter.Suggestion:
As of February 8, 2021 GitHub Actions supports skipping
push
andpull_request
workflows by looking for some common keywords in the commit message.So if you'll have the option to suffix the keyword GitHub uses to skip the workflow (like
[skip ci]
) it'll not run the workflow for thechore
commit.The text was updated successfully, but these errors were encountered: