Skip to content

How can I stop my github action being fired 3 times when I create a new release? #25656

Answered by Simran-B
baltermia asked this question in Actions
Discussion options

You must be logged in to vote

on: release triggers on all event types by default. You can limit it to e.g. published:

on:
  release:
    types: [published]

Also see the docs: Events that trigger workflows - GitHub Docs

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Answer selected
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
2 participants