I've updated the trigger in hopes to get my workflow to run on main when PRs are merged (so using the push event) but the pull_request event for everything else:
on:
push:
branches:
- main
pull_request:
branches:
- '**/*'
You can see it's properly triggered on my pull request when I push new commits, with the pull_request event:
However it's not posting comments! The report says "updated 2 mins ago" so it seems like that's working properly but I'm not sure why it can't resolve the pull request number.
Is there some way to enable debug output or something like that?
Thanks!
I've updated the trigger in hopes to get my workflow to run on
main
when PRs are merged (so using thepush
event) but thepull_request
event for everything else:You can see it's properly triggered on my pull request when I push new commits, with the
pull_request
event:However it's not posting comments! The report says "updated 2 mins ago" so it seems like that's working properly but I'm not sure why it can't resolve the pull request number.
Is there some way to enable debug output or something like that? Thanks!