From 08bf34104a390a2a787ce78712500b37d2d9ccf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20MARQUET?= <72651575+BreizhHardware@users.noreply.github.com> Date: Mon, 16 Jun 2025 09:54:24 +0200 Subject: [PATCH] update(create_dev): add condition to skip jobs for Dependabot pull requests --- .github/workflows/create_dev.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/create_dev.yml b/.github/workflows/create_dev.yml index cdfe850..05510e8 100644 --- a/.github/workflows/create_dev.yml +++ b/.github/workflows/create_dev.yml @@ -7,6 +7,7 @@ on: jobs: build-binary: + if: ${{ github.actor != 'dependabot[bot]' && !startsWith(github.ref, 'refs/heads/dependabot/') }} runs-on: ubuntu-latest steps: - name: Checkout code @@ -53,6 +54,7 @@ jobs: path: release/github-ntfy docker-build-push: + if: ${{ github.actor != 'dependabot[bot]' && !startsWith(github.ref, 'refs/heads/dependabot/') }} needs: [build-binary] runs-on: ubuntu-latest steps: