-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
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
Approval of a PR made by another action #21
Comments
I don't think that's possible. From https://help.github.com/en/articles/events-that-trigger-workflows#about-workflow-events:
I assume this is to prevent infinite chains of actions being triggered. |
Thanks for the answer! |
Now that Github Actions has the workflow_dispatch event, I think it is possible to trigger one workflow from another. So I would love it if this action took an optional input for the pull request number, because then it can be used from a workflow that executes on the |
I know I can't reopen this issue, but I did create a pull request to implement the functionality I want here, if you're interested. |
Is it possible to run this action right after another action has created a pull request?
Neither
push
event norpull_request
in my case trigger this action.At the same time, it’s also not very clear how to correctly filter PR made by an action. Should it be
if: github.actor == 'github-action'
orif: github.actor == 'github-action[bot]'
or something else?The text was updated successfully, but these errors were encountered: