Skip to content

Commit cbe9456

Browse files
committed
Fix the other instance of "Push to GHCR"
1 parent f5e3af8 commit cbe9456

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/container.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
PYNUCLEUS_BUILD_PARALLELISM=4
5757
5858
- name: Push To GHCR
59-
if: github.event_name == 'pull_request'
59+
if: (github.event_name == 'pull_request') && (github.actor != 'dependabot[bot]')
6060
uses: redhat-actions/push-to-registry@v2
6161
id: push-pr
6262
with:
@@ -78,7 +78,7 @@ jobs:
7878
${{ steps.build_image.outputs.image }}:${{ env.TEST_IMAGE_TAG }}
7979
8080
- name: Push To GHCR
81-
if: (github.event_name == 'push') && (github.actor != 'dependabot[bot]')
81+
if: github.event_name == 'push'
8282
uses: redhat-actions/push-to-registry@v2
8383
id: push
8484
with:

0 commit comments

Comments
 (0)