Skip to content

Commit

Permalink
ci: update test workflow triggers to include PRs.
Browse files Browse the repository at this point in the history
This commit updates the `test.yml` GitHub workflow's triggers to include
`pull_request` in addition to `push`. This will ensure that when a pull
request is opened the CI tasks are run and check statuses added to the
PR.

Without an update to the repository settings to enable branch protection
rules these will not be _blocking_ checks.
  • Loading branch information
cpu committed Aug 3, 2023
1 parent 63cbc63 commit b381041
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Test
on: push
on: [push, pull_request]

permissions:
contents: read
Expand Down

0 comments on commit b381041

Please sign in to comment.