Skip to content

Don't run on tag creation? #25615

Answered by kingthorin
SoftCreatR asked this question in Actions
Oct 13, 2020 · 11 comments · 1 reply
Discussion options

You must be logged in to vote

If you want to run on pushes but ignore all tags you’d need something like:

on:
  push:
    tags-ignore:
      - '**'

docs.github.com

Workflow syntax for GitHub Actions - GitHub Docs

The branches , branches-ignore , tags , and tags-ignore keywords accept glob patterns that use the * and ** wildcard characters to match more than one branch or tag name. For more information, see the “Filter pattern cheat sheet.”

Replies: 11 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Answer selected
Comment options

You must be logged in to vote
1 reply
@Zordid
Comment options

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment