We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 044aa13 commit 9e56c35Copy full SHA for 9e56c35
1 file changed
.github/workflows/ci.yml
@@ -66,7 +66,7 @@ jobs:
66
uses: docker/setup-buildx-action@v3
67
68
- name: Log in to GHCR
69
- if: github.event_name != 'pull_request'
+ if: github.event_name != 'pull_request' && github.actor != 'dependabot[bot]'
70
uses: docker/login-action@v3
71
with:
72
registry: ghcr.io
@@ -89,7 +89,7 @@ jobs:
89
90
context: .
91
platforms: linux/amd64,linux/arm64
92
- push: ${{ github.event_name != 'pull_request' && !env.ACT }}
+ push: ${{ github.event_name != 'pull_request' && github.actor != 'dependabot[bot]' && !env.ACT }}
93
tags: ${{ steps.meta.outputs.tags }}
94
labels: ${{ steps.meta.outputs.labels }}
95
cache-from: type=gha
0 commit comments