aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/check-python.yml
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-08-28 20:28:44 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-08-28 20:47:35 -0300
commit0cc56a71a51296b76765992900c101efc658e909 (patch)
tree89e636e521848b079c3fae9a7d8a110fbe1f9a92 /.github/workflows/check-python.yml
parentbuild(deps): bump actions/checkout from 3.5.3 to 3.6.0 (diff)
downloadfirejail-0cc56a71a51296b76765992900c101efc658e909.tar.gz
firejail-0cc56a71a51296b76765992900c101efc658e909.tar.zst
firejail-0cc56a71a51296b76765992900c101efc658e909.zip
ci: fix dependabot duplicated workflow runs
Every workflow is being executed twice for dependabot: Once when its branch is pushed to this repository and again when a PR is opened for it. For example, see the checks in #5979 ("29 checks passed"). This happens because both `on.push` and `on.pull_request` are specified in the workflow files. There does not seem to be a simple and generic way to avoid such duplicated runs directly in GitHub Actions (such as preventing the same check from running for the same exact commit)[1], so just ignore the dependabot branches on push for now. See also and commit 5871b08a4 ("ci: run for every branch instead of just master", 2023-04-23) / PR #5815. [1] https://github.com/orgs/community/discussions/26276
Diffstat (limited to '.github/workflows/check-python.yml')
-rw-r--r--.github/workflows/check-python.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/check-python.yml b/.github/workflows/check-python.yml
index 35584165c..977510145 100644
--- a/.github/workflows/check-python.yml
+++ b/.github/workflows/check-python.yml
@@ -4,6 +4,8 @@ name: Check-Python
4 4
5on: 5on:
6 push: 6 push:
7 branches-ignore:
8 - 'dependabot/**'
7 paths: 9 paths:
8 - '**.py' 10 - '**.py'
9 - .github/workflows/check-python.yml 11 - .github/workflows/check-python.yml