We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5e3af8 commit cbe9456Copy full SHA for cbe9456
.github/workflows/container.yml
@@ -56,7 +56,7 @@ jobs:
56
PYNUCLEUS_BUILD_PARALLELISM=4
57
58
- name: Push To GHCR
59
- if: github.event_name == 'pull_request'
+ if: (github.event_name == 'pull_request') && (github.actor != 'dependabot[bot]')
60
uses: redhat-actions/push-to-registry@v2
61
id: push-pr
62
with:
@@ -78,7 +78,7 @@ jobs:
78
${{ steps.build_image.outputs.image }}:${{ env.TEST_IMAGE_TAG }}
79
80
81
- if: (github.event_name == 'push') && (github.actor != 'dependabot[bot]')
+ if: github.event_name == 'push'
82
83
id: push
84
0 commit comments