Greg
Greg

Reputation: 11522

Is there a way to see GitHub events?

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

Answers (1)

PDHide
PDHide

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.

https://docs.github.com/en/free-pro-team@latest/developers/webhooks-and-events/webhook-events-and-payloads

Upvotes: 2

Related Questions