From 42dede3648a53406b7d17c8fb3cab27d51b7b6ac Mon Sep 17 00:00:00 2001 From: Tim Van Wassenhove Date: Sat, 30 Mar 2024 18:05:25 +0100 Subject: [PATCH] ci: one more attempt to trigger builds --- .github/workflows/test_suite.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test_suite.yml b/.github/workflows/test_suite.yml index 37641eb..b8f8871 100644 --- a/.github/workflows/test_suite.yml +++ b/.github/workflows/test_suite.yml @@ -4,6 +4,7 @@ on: branches-ignore: - 'dependabot/**' #avoid duplicates: only run the PR, not the push - 'renovate/**' #avoid duplicates: only run the PR, not the push + - 'release-plz**' #avoid duplicates: only run the PR, not the push - 'gh-pages' #github pages do not trigger all tests tags-ignore: - 'v*' #avoid rerun existing commit on release @@ -18,7 +19,7 @@ concurrency: jobs: test: - if: (github.event_name != 'pull_request' && ! github.event.pull_request.head.repo.fork) || (github.event_name == 'pull_request' && (github.event.pull_request.head.repo.fork || startsWith(github.head_ref, 'dependabot/') || startsWith(github.head_ref, 'renovate/') || startsWith(github.ref, 'release-plz'))) + if: (github.event_name != 'pull_request' && ! github.event.pull_request.head.repo.fork) || (github.event_name == 'pull_request' && (github.event.pull_request.head.repo.fork || startsWith(github.head_ref, 'dependabot/') || startsWith(github.head_ref, 'renovate/') || startsWith(github.head_ref, 'release-plz'))) name: cargo test runs-on: ubuntu-latest steps: