aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/build.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/build.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/build.yml')
-rw-r--r--.github/workflows/build.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index bd6fdb2e1..607c2e59c 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -6,6 +6,8 @@ name: Build
6# Note: Keep this list in sync with DISTFILES in ../../Makefile. 6# Note: Keep this list in sync with DISTFILES in ../../Makefile.
7on: 7on:
8 push: 8 push:
9 branches-ignore:
10 - 'dependabot/**'
9 paths: 11 paths:
10 - 'contrib/**' 12 - 'contrib/**'
11 - 'etc/**' 13 - 'etc/**'