From 0eb19db26b43e03cead5aa3f58e30b49ad0cce4b Mon Sep 17 00:00:00 2001 From: Vitaliy Saveliev <70613571+milkrage@users.noreply.github.com> Date: Tue, 30 Jul 2024 12:13:41 +0300 Subject: [PATCH] Allow CI jobs for pull requests (#287) Before this fix, verify and secure CI jobs was start only on push to the repository and did not work in forks. --- .github/workflows/secure.yml | 6 +++++- .github/workflows/verify.yml | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/secure.yml b/.github/workflows/secure.yml index 8b90e7d9..e49e66f3 100644 --- a/.github/workflows/secure.yml +++ b/.github/workflows/secure.yml @@ -1,6 +1,10 @@ name: Secure -on: push +on: + push: + branches: + - master + pull_request: jobs: # Sample GitHub Actions: diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 97da0b9d..8c11d137 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -1,6 +1,10 @@ name: Verify -on: push +on: + push: + branches: + - master + pull_request: jobs: tests: