From 3add2d73b3e8fdb9babe3531106720c7141533c9 Mon Sep 17 00:00:00 2001 From: Daan De Meyer Date: Fri, 20 Dec 2024 10:21:12 +0100 Subject: [PATCH] coverage: Run on pull request in a few cases If we're changing the integration test wrapper or coverage.yml, let's run the coverage workflow on PRs as well to make sure it doesn't break. --- .github/workflows/coverage.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 7850c2c514..01af075722 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -7,6 +7,14 @@ on: # Calculate coverage daily at midnight - cron: '0 0 * * *' + pull_request: + branches: + - main + - v[0-9]+-stable + paths: + - .github/workflows/coverage.yml + - test/integration-test-wrapper.py + permissions: contents: read