Reputation: 11522
Working with github actions there are lots of events, and payloads, that can potentially trigger actions.
Is there a log or some way to see what events are being fired when I do various activities using git/github?
Upvotes: 1
Views: 738
Reputation: 19979
You can use github webhooks:
https://docs.github.com/en/free-pro-team@latest/developers/webhooks-and-events/about-webhooks
You can configure what event to trigger the hook
the webhook reesponse will have property called action:
action string Most webhook payloads contain an action property that contains the specific activity that triggered the event.
Upvotes: 2