-
Notifications
You must be signed in to change notification settings - Fork 93
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
Workflow run fails when triggered by an issue_comment
event
#69
Comments
Same issue here but I dont know if thats the line that is causing the problem. |
I thought it was that line because the event name in this case is Maybe something like this? ... on ${eventName.startsWith('issue') ? 'Issue' : 'PullRequest'} { (Though I haven’t looked into it, and I’m guessing a bit here.) |
Happy to accept a pull request. That definitely looks like it would be a problem with |
I have done a little testing and it is something within that function. Just gotta do some more testing to figure out what exactly is the problem. |
Ahh I see -- that would probably make sense. I'll try that solution and see what happens. |
Ok I have just tested and that solution seems to work! I will make a PR with the changes! |
My workflow looks like this:
It fails with the following error message:
If I instead trigger it using e.g.:
…it works fine.
I’m not exactly sure, but I wonder if the problem is this line:
github-project-automation-plus/src/generate-project-query.js
Line 11 in 8b1f153
The text was updated successfully, but these errors were encountered: