Skip to content

I labelled my release as "pre-release" and the action didn't run. #47

Closed Answered by stefanzweifel
danielh-official asked this question in Q&A
Discussion options

You must be logged in to vote

Hey @danielh-official,

I guess your workflow looks like this?

name: "Update Changelog"

on:
  release:
    types: [released]

If yes, the workflow is only run for released released. If the workflow should run in both cases, you can add the prereleased-activity type.

name: "Update Changelog"

on:
  release:
    types: [released, prereleased]

See the GitHub Action trigger docs for details: https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#release

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by danielh-official
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants