Skip to content

Commit

Permalink
Merge pull request #125 from Edirom/peterstadler-patch-1
Browse files Browse the repository at this point in the history
exclude Dependabot PRs from Docker builds
  • Loading branch information
peterstadler authored Sep 5, 2024
2 parents 55e593e + 4195c39 commit b5c813f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
# Login against a Docker registry except on PR
# https://github.com/docker/login-action
- name: Log into registry ${{ env.REGISTRY }}
if: github.event_name != 'pull_request'
if: github.event_name != 'pull_request' && github.actor != 'dependabot[bot]'
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
Expand Down

0 comments on commit b5c813f

Please sign in to comment.