From 6b6e2b48240c873f1894bc1d17238f73210ff204 Mon Sep 17 00:00:00 2001 From: Pavel Horal Date: Fri, 1 May 2026 22:22:14 +0200 Subject: [PATCH] Ignore push event on dependabot branches --- .github/workflows/build-project.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-project.yml b/.github/workflows/build-project.yml index 2f3768e2..4a9bd36a 100644 --- a/.github/workflows/build-project.yml +++ b/.github/workflows/build-project.yml @@ -2,6 +2,8 @@ name: Build project on: push: + branches-ignore: + - 'dependabot/**' pull_request: permissions: @@ -31,4 +33,4 @@ jobs: name: Prepare analysis context uses: WrenSecurity/.github/.github/workflows/sonar-pull-prepare.yml@main with: - pull_request: ${{ toJSON(github.event.pull_request) }} \ No newline at end of file + pull_request: ${{ toJSON(github.event.pull_request) }}