update(create_dev): add condition to skip jobs for Dependabot pull requests

This commit is contained in:
Félix MARQUET
2025-06-16 09:54:24 +02:00
parent ff3e00eb4e
commit 08bf34104a

View File

@@ -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: