diff --git a/.appveyor.yml b/.appveyor.yml index c41ee4abe..32f396294 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -61,6 +61,7 @@ environment: branches: except: - /^ci/(?!appveyor)(/.+)?/ + - /^dependabot/(/.+)?/ platform: - x64 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 57c5f7ba5..4a7918003 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,7 @@ on: branches-ignore: - 'ci/**' - '!ci/gha**' + - 'dependabot/**' pull_request: branches: - 'master' diff --git a/.packit.yml b/.packit.yml index 3d31fca11..41018471b 100644 --- a/.packit.yml +++ b/.packit.yml @@ -26,6 +26,6 @@ jobs: - <<: *copr # Run on push to any branch. trigger: commit - # Run except the "master*" branches. + # Run except the "master*" and "dependabot*" branches. # https://github.com/packit/packit/issues/1986 - branch: '(?!master)' + branch: '(?!master)(?!dependabot)'