From dc7251f78c460115b41d829327af74c34223b067 Mon Sep 17 00:00:00 2001 From: Nikolai Vladimirov Date: Mon, 9 Sep 2024 06:00:50 +0300 Subject: [PATCH] chore(ci): allow tests to run on Pull Requests Currently pull requests from forks don't trigger the test suite. This allows the test suite to run on pull requests from forks after manual approval by a codeowner. --- .github/workflows/ci.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index ed3382f2..93df5cd5 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,4 +1,8 @@ -on: [push] +on: + push: + branches: [ "master"] + pull_request: + branches: [ "master"] permissions: contents: read jobs: