Skip to content

Commit

Permalink
Do not perform push for dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
Tvion committed Jan 22, 2025
1 parent cd43646 commit 7ad7385
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:

env:
TAG_NAME: ${{ github.event.release.tag_name || github.ref }}
PUSH: ${{ github.event_name != 'workflow_dispatch' || inputs.publish_docker }}
PUSH: ${{ (github.event_name != 'workflow_dispatch' || inputs.publish_docker) && github.actor != 'dependabot[bot]' }}

jobs:
multiplatform_build:
Expand Down

0 comments on commit 7ad7385

Please sign in to comment.