Skip to content

Commit 105d3d1

Browse files
author
Bill Barksdale
committed
Fix broken links to source
1 parent afc7d8e commit 105d3d1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

content/v3/repos/hooks.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ event](http://help.github.com/post-receive-hooks/).
4141

4242
A number of external services have already been integrated through the open source
4343
[github-services](https://github.com/github/github-services) project, including the generic
44-
[Web Service](https://github.com/github/github-services/blob/master/services/web.rb) service which can be used to
44+
[Web Service](https://github.com/github/github-services/blob/master/lib/services/web.rb) service which can be used to
4545
define your own custom hooks. All possible names for hooks, the events they support, and their configuration can be seen at [/hooks](https://api.github.com/hooks).
4646

4747
For a Hook to go through, the Hook needs to be configured to trigger for
48-
an event, and the Service has to listen to it. Most of the Services only listen for `push` events. However, the generic [Web Service](https://github.com/github/github-services/blob/master/services/web.rb) listens for all events. Other services like the [IRC Service](https://github.com/github/github-services/blob/master/services/irc.rb) may only listen for `push`, `issues`, and `pull_request` events.
48+
an event, and the Service has to listen to it. Most of the Services only listen for `push` events. However, the generic [Web Service](https://github.com/github/github-services/blob/master/lib/services/web.rb) listens for all events. Other services like the [IRC Service](https://github.com/github/github-services/blob/master/lib/services/irc.rb) may only listen for `push`, `issues`, and `pull_request` events.
4949

5050
## List
5151

@@ -91,7 +91,7 @@ for. Default: `["push"]`.
9191
: _Optional_ **boolean** - Determines whether the hook is actually
9292
triggered on pushes.
9393

94-
Example: The ["web" service hook](https://github.com/github/github-services/blob/master/services/web.rb#L4-11)
94+
Example: The ["web" service hook](https://github.com/github/github-services/blob/master/lib/services/web.rb#L4-11)
9595
takes these fields:
9696

9797
* `url`
@@ -155,7 +155,7 @@ list of events that the Hook triggers for.
155155
: _Optional_ **boolean** - Determines whether the hook is actually
156156
triggered on pushes.
157157

158-
Example: The ["web" service hook](https://github.com/github/github-services/blob/master/services/web.rb#L4-11)
158+
Example: The ["web" service hook](https://github.com/github/github-services/blob/master/lib/services/web.rb#L4-11)
159159
takes these fields:
160160

161161
* `url`

0 commit comments

Comments
 (0)