Skip to content

Problem using workflow_dispatch trigger with other workflow triggers #26780

Discussion options

You must be logged in to vote

You can have multiple triggers, there’s just a syntax error in your workflow: There’s no colon after workflow_dispatch, making the value for the on: keyword a weird mix of string and object. Try this:

on:
  workflow_dispatch:
  push:
    branches:
      - master
# ...

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
3 participants