Github Actions / CI: Workflow is not valid

Viewed 82

I have this code on my ci.yml file. It worked yesterday but it seems it's not working now. Did Github had any update recently?

enter image description here

1 Answers

branches is valid for the push and pull_request events, but not for workflow_dispatch. You can see the valid syntax for workflow_dispatch here.

Related