From b381041222c5515d202a182c2efee4bddb6bac5e Mon Sep 17 00:00:00 2001 From: Daniel McCarney Date: Thu, 3 Aug 2023 09:47:21 -0400 Subject: [PATCH] ci: update test workflow triggers to include PRs. 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. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4cff6a98c..b91d153c1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,5 +1,5 @@ name: Test -on: push +on: [push, pull_request] permissions: contents: read