Skip to content

Commit fdabc3e

Browse files
authored
Fix Docker releases for Dependabot PRs (#1168)
1 parent 3be8206 commit fdabc3e

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ updates:
7676
- 'patch'
7777
commanderjs:
7878
patterns:
79-
- '@commanderjs/*'
79+
- '@commander-js/*'
8080
- 'commander'
8181
update-types:
8282
- 'major'

.github/workflows/release.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,9 @@ jobs:
6464
runtime: [Node, Bun]
6565
name: ${{ matrix.runtime }} Docker image
6666
needs: [stable, snapshot]
67-
if: always() && (
67+
if: always() && github.actor != 'dependabot[bot]' && (
6868
contains(needs.stable.outputs.publishedPackages, '@graphql-hive/gateway') ||
69-
contains(needs.snapshot.outputs.publishedPackages, '@graphql-hive/gateway') ||
70-
github.actor != 'dependabot[bot]' ||
71-
github.actor != 'dependabot-preview[bot]'
69+
contains(needs.snapshot.outputs.publishedPackages, '@graphql-hive/gateway')
7270
)
7371
steps:
7472
- name: Version

0 commit comments

Comments
 (0)