We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
workflow_dispatch
When manually running an Action, I get this error, which makes sense:
Error: This action only supports pull requests and pushes, workflow_dispatch events are not supported.
However this even happens if I add
if: github.event_name != 'workflow_dispatch'
I don't know if that's expected, but I'd very much like a way around it.
(Use case: run a workflow if particular files change, or if manually requested)
The text was updated successfully, but these errors were encountered:
This action only supports pull requests or push's commits and therefore can't be triggered manually, as can be seen in the following code:
get-changed-files/src/main.ts
Lines 28 to 42 in d06c756
Sorry, something went wrong.
No branches or pull requests
When manually running an Action, I get this error, which makes sense:
However this even happens if I add
I don't know if that's expected, but I'd very much like a way around it.
(Use case: run a workflow if particular files change, or if manually requested)
The text was updated successfully, but these errors were encountered: