8000 Hyperlink the event name to its corresponding detail page · 08opt/developer.github.com@6037632 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6037632

Browse files
committed
Hyperlink the event name to its corresponding detail page
1 parent c01e931 commit 6037632

File tree

1 file changed

+41
-21
lines changed

1 file changed

+41
-21
lines changed

content/webhooks/index.md

Lines changed: 41 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -40,27 +40,27 @@ The available events are:
4040
Name | Description
4141
-----|-----------|
4242
`*` | Any time any event is triggered ([Wildcard Event][wildcard-section]).
43-
`commit_comment` | Any time a Commit is commented on.
44-
`create` | Any time a Branch or Tag is created.
45-
`delete` | Any time a Branch or Tag is deleted.
46-
`deployment` | Any time a Repository has a new deployment created from the API.
47-
`deployment_status` | Any time a deployment for a Repository has a status update from the API.
48-
`fork` | Any time a Repository is forked.
49-
`gollum` | Any time a Wiki page is updated.
50-
`issue_comment` | Any time an Issue or Pull Request is [commented](/v3/issues/comments/) on.
51-
`issues` | Any time an Issue is assigned, unassigned, labeled, unlabeled, opened, closed, or reopened.
52-
`member` | Any time a User is added as a collaborator to a non-Organization Repository.
53-
`membership` | Any time a User is added or removed from a team. **Organization hooks only**.
54-
`page_build` | Any time a Pages site is built or results in a failed build.
55-
`public` | Any time a Repository changes from private to public.
56-
`pull_request_review_comment` | Any time a [comment is created on a portion of the unified diff](/v3/pulls/comments) of a pull request (the Files Changed tab).
57-
`pull_request` | Any time a Pull Request is assigned, unassigned, labeled, unlabeled, opened, closed, reopened, or synchronized (updated due to a new push in the branch that the pull request is tracking).
58-
`push` | Any Git push to a Repository, including editing tags or branches. Commits via API actions that update references are also counted. **This is the default event.**
59-
`repository` | Any time a Repository is created. **Organization hooks only**.
60-
`release` | Any time a Release is published in a Repository.
61-
`status` | Any time a Repository has a status update from the API
62-
`team_add` | Any time a team is added or modified on a Repository.
63-
`watch` | Any time a User watches a Repository.
43+
[`commit_comment`][event-types-commit_comment] | Any time a Commit is commented on.
44+
[`create`][event-types-create] | Any time a Branch or Tag is created.
45+
[`delete`][event-types-delete] | Any time a Branch or Tag is deleted.
46+
[`deployment`][event-types-deployment] | Any time a Repository has a new deployment created from the API.
47+
[`deployment_status`][event-types-deployment_status] | Any time a deployment for a Repository has a status update from the API.
48+
[`fork`][event-types-fork] | Any time a Repository is forked.
49+
[`gollum`][event-types-gollum] | Any time a Wiki page is updated.
50+
[`issue_comment`][event-types-issue_comment] | Any time an Issue or Pull Request is [commented](/v3/issues/comments/) on.
51+
[`issues`][event-types-issues] | Any time an Issue is assigned, unassigned, labeled, unlabeled, opened, closed, or reopened.
52+
[`member`][event-types-member] | Any time a User is added as a collaborator to a non-Organization Repository.
53+
[`membership`][event-types-membership] | Any time a User is added or removed from a team. **Organization hooks only**.
54+
[`page_build`][event-types-page_build] | Any time a Pages site is built or results in a failed build.
55+
[`public`][event-types-public] | Any time a Repository changes from private to public.
56+
[`pull_request_review_comment`][event-types-pull_request_review_comment] | Any time a [comment is created on a portion of the unified diff](/v3/pulls/comments) of a pull request (the Files Changed tab).
57+
[`pull_request`][event-types-pull_request] | Any time a Pull Request is assigned, unassigned, labeled, unlabeled, opened, closed, reopened, or synchronized (updated due to a new push in the branch that the pull request is tracking).
58+
[`push`][event-types-push] | Any Git push to a Repository, including editing tags or branches. Commits via API actions that update references are also counted. **This is the default event.**
59+
[`repository`][event-types-repository] | Any time a Repository is created. **Organization hooks only**.
60+
[`release`][event-types-release] | Any time a Release is published in a Repository.
61+
[`status`][event-types-status] | Any time a Repository has a status update from the API
62+
[`team_add`][event-types-team_add] | Any time a team is added or modified on a Repository.
63+
[`watch`][event-types-watch] | Any time a User watches a Repository.
6464

6565
### Wildcard Event
6666

@@ -191,7 +191,27 @@ services to the [github-services repository][github-services].
191191
[repo-hooks-ping]: /v3/repos/hooks/#ping-a-hook
192192
[events-api]: /v3/activity/events/
193193
[event-types]: /v3/activity/events/types/
194+
[event-types-commit_comment]: /v3/activity/events/types/#commitcommentevent
195+
[event-types-create]: /v3/activity/events/types/#createevent
196+
[event-types-delete]: /v3/activity/events/types/#deleteevent
197+
[event-types-deployment]: /v3/activity/events/types/#deploymentevent
198+
[event-types-deployment_status]: /v3/activity/events/types/#deploymentstatusevent
199+
[event-types-fork]: /v3/activity/events/types/#forkevent
200+
[event-types-gollum]: /v3/activity/events/types/#gollumevent
201+
[event-types-issue_comment]: /v3/activity/events/types/#issuecommentevent
202+
[event-types-issues]: /v3/activity/events/types/#issuesevent
203+
[event-types-member]: /v3/activity/events/types/#memberevent
204+
[event-types-membership]: /v3/activity/events/types/#membershipevent
205+
[event-types-page_build]: /v3/activity/events/types/#pagebuildevent
206+
[event-types-public]: /v3/activity/events/types/#publicevent
207+
[event-types-pull_request]: /v3/activity/events/types/#pullrequestevent
208+
[event-types-pull_request_review_comment]: /v3/activity/events/types/#pullrequestreviewcommentevent
194209
[event-types-push]: /v3/activity/events/types/#pushevent
210+
[event-types-release]: /v3/activity/events/types/#releaseevent
211+
[event-types-repository]: /v3/activity/events/types/#repositoryevent
212+
[event-types-status]: /v3/activity/events/types/#statusevent
213+
[event-types-team_add]: /v3/activity/events/types/#teamaddevent
214+
[event-types-watch]: /v3/activity/events/types/#watchevent
195215
[github-services]: https://github.com/github/github-services
196216
[github-services-docs]: https://github.com/github/github-services/tree/master/docs
197217
[oauth-applications]: /v3/oauth/

0 commit comments

Comments
 (0)
0