Skip to content
This repository was archived by the owner on Sep 1, 2022. It is now read-only.

Commit 274fba3

Browse files
authored
Merge pull request #61 from parroty/fix-doc-link
Fix documentation links
2 parents 09684ee + b60c0c0 commit 274fba3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

responses/14_choose-event.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ As we briefly discussed earlier, workflows can be configured to run:
88
- At a scheduled time
99
- When an event outside of GitHub occurs
1010

11-
Full details are available in [Events that trigger workflows](https://help.github.com/en/articles/events-that-trigger-workflows) on GitHub Help. So far, we've used the [`push` event](https://help.github.com/en/articles/events-that-trigger-workflows#push-event-push) for our Node.js workflow. That makes sense when we want to take action on code changes to our repository.
11+
Full details are available in [Events that trigger workflows](https://help.github.com/en/articles/events-that-trigger-workflows) on GitHub Help. So far, we've used the [`push` event](https://help.github.com/en/articles/events-that-trigger-workflows#push) for our Node.js workflow. That makes sense when we want to take action on code changes to our repository.
1212

1313
For a review workflow, we want to engage with human reviews, instead. For example, we'll use the [Label approved pull requests action](https://github.com/pullreminders/label-when-approved-action) so that we can easily see when we've gotten enough reviews to merge a pull request.
1414

15-
Let's prep our review workflow by triggering it with a [`pull_request_review` event](https://help.github.com/en/articles/events-that-trigger-workflows#pull-request-review-event-pull_request_review).
15+
Let's prep our review workflow by triggering it with a [`pull_request_review` event](https://help.github.com/en/articles/events-that-trigger-workflows#pull_request_review).

0 commit comments

Comments
 (0)