Create serverless applications | Monitor GitHub events by using a webhook with Azure Functions Flashcards

1
Q

What is one common use of webhooks in a DevOps environment?

A

To notify an Azure function that the code or configuration for an application has changed in GitHub.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the Payload URL of a webhook?

A

The payload URL is the URL of the server that will receive the webhook POST requests.

Each event type has a specific payload format. That payload contains information about the event that triggered the webhook.

When you create a webhook in github, the payload url can be azure function.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Webhooks can be delivered using two different content types:

A

The application/json content type delivers the JSON payload directly as the body of a POST request.

The application/x-www-form-urlencoded content type sends the JSON payload as a form parameter, called payload.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is Gollum on Github?

A

Gollum is the name of a GitHub event that is fired whenever a page in a repository’s wiki is created or updated.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly