From 7419796d6deb0fba545e734e0ecabd2f898ab76f Mon Sep 17 00:00:00 2001 From: Michael Chirico Date: Sun, 29 Sep 2024 23:03:14 -0700 Subject: [PATCH] Run more GHA on pull requests targeting any branch (#6553) * Run coverage on pull requests targeting any branch * Consistency in other checks too --- .github/workflows/code-quality.yaml | 5 +---- .github/workflows/performance-tests.yml | 2 -- .github/workflows/rchk.yaml | 3 +-- .github/workflows/test-coverage.yaml | 1 - 4 files changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/code-quality.yaml b/.github/workflows/code-quality.yaml index ca4225458..19ee0c327 100644 --- a/.github/workflows/code-quality.yaml +++ b/.github/workflows/code-quality.yaml @@ -1,10 +1,7 @@ on: push: - branches: - - master + branches: [master] pull_request: - branches: - - master name: code-quality diff --git a/.github/workflows/performance-tests.yml b/.github/workflows/performance-tests.yml index e1b9a5409..3d81f5741 100644 --- a/.github/workflows/performance-tests.yml +++ b/.github/workflows/performance-tests.yml @@ -2,8 +2,6 @@ name: atime performance tests on: pull_request: - branches: - - '*' types: - opened - reopened diff --git a/.github/workflows/rchk.yaml b/.github/workflows/rchk.yaml index c799df028..96b982ca8 100644 --- a/.github/workflows/rchk.yaml +++ b/.github/workflows/rchk.yaml @@ -17,8 +17,7 @@ # under the License. on: push: - branches: - - master + branches: [master] pull_request: name: 'rchk' diff --git a/.github/workflows/test-coverage.yaml b/.github/workflows/test-coverage.yaml index 79fcd6fdc..c46e655a5 100644 --- a/.github/workflows/test-coverage.yaml +++ b/.github/workflows/test-coverage.yaml @@ -4,7 +4,6 @@ on: push: branches: [master] pull_request: - branches: [master] name: test-coverage.yaml