diff --git a/.github/workflows/build-s2i-python-kopf-publish.yaml b/.github/workflows/build-s2i-python-kopf-publish.yaml index d92fd8fc5..d7661d449 100644 --- a/.github/workflows/build-s2i-python-kopf-publish.yaml +++ b/.github/workflows/build-s2i-python-kopf-publish.yaml @@ -39,6 +39,7 @@ jobs: - name: Push to ghcr.io uses: redhat-actions/push-to-registry@9986a6552bc4571882a4a67e016b17361412b4df # v2 + if: ${{ !contains(github.head_ref, 'renovate') }} with: image: ${{ steps.build_image.outputs.image }} registry: ghcr.io/${{ github.repository }} @@ -47,7 +48,7 @@ jobs: tags: ${{ steps.build_image.outputs.tags }} - name: Push to Quay - if: ${{ env.REGISTRY }} != "" + if: ${{ env.REGISTRY }} != "" && ${{ !contains(github.head_ref, 'renovate') }} id: push_to_quay uses: redhat-actions/push-to-registry@9986a6552bc4571882a4a67e016b17361412b4df # v2 with: diff --git a/.github/workflows/jenkins-agent-image-mgmt-publish.yaml b/.github/workflows/jenkins-agent-image-mgmt-publish.yaml index f1216eda9..1e526b8ea 100644 --- a/.github/workflows/jenkins-agent-image-mgmt-publish.yaml +++ b/.github/workflows/jenkins-agent-image-mgmt-publish.yaml @@ -38,6 +38,7 @@ jobs: - name: Push to ghcr.io uses: redhat-actions/push-to-registry@9986a6552bc4571882a4a67e016b17361412b4df # v2 + if: ${{ !contains(github.head_ref, 'renovate') }} with: image: ${{ steps.build_image.outputs.image }} registry: ghcr.io/${{ github.repository }} @@ -46,7 +47,7 @@ jobs: tags: ${{ steps.build_image.outputs.tags }} - name: Push to Quay - if: ${{ env.REGISTRY }} != "" + if: ${{ env.REGISTRY }} != "" && ${{ !contains(github.head_ref, 'renovate') }} id: push_to_quay uses: redhat-actions/push-to-registry@9986a6552bc4571882a4a67e016b17361412b4df # v2 with: diff --git a/.github/workflows/jenkins-agent-python-publish.yaml b/.github/workflows/jenkins-agent-python-publish.yaml index 0773bfab7..05577c6a4 100644 --- a/.github/workflows/jenkins-agent-python-publish.yaml +++ b/.github/workflows/jenkins-agent-python-publish.yaml @@ -38,6 +38,7 @@ jobs: - name: Push to ghcr.io uses: redhat-actions/push-to-registry@9986a6552bc4571882a4a67e016b17361412b4df # v2 + if: ${{ !contains(github.head_ref, 'renovate') }} with: image: ${{ steps.build_image.outputs.image }} registry: ghcr.io/${{ github.repository }} @@ -46,7 +47,7 @@ jobs: tags: ${{ steps.build_image.outputs.tags }} - name: Push to Quay - if: ${{ env.REGISTRY }} != "" + if: ${{ env.REGISTRY }} != "" && ${{ !contains(github.head_ref, 'renovate') }} id: push_to_quay uses: redhat-actions/push-to-registry@9986a6552bc4571882a4a67e016b17361412b4df # v2 with: diff --git a/.github/workflows/tekton-task-images-conftest-publish.yaml b/.github/workflows/tekton-task-images-conftest-publish.yaml index 604b10106..aee6148bf 100644 --- a/.github/workflows/tekton-task-images-conftest-publish.yaml +++ b/.github/workflows/tekton-task-images-conftest-publish.yaml @@ -43,6 +43,7 @@ jobs: - name: Push to ghcr.io uses: redhat-actions/push-to-registry@9986a6552bc4571882a4a67e016b17361412b4df # v2 + if: ${{ !contains(github.head_ref, 'renovate') }} with: image: ${{ steps.build_image.outputs.image }} registry: ghcr.io/${{ github.repository }} @@ -51,7 +52,7 @@ jobs: tags: ${{ steps.build_image.outputs.tags }} - name: Push to Quay - if: ${{ env.REGISTRY }} != "" + if: ${{ env.REGISTRY }} != "" && ${{ !contains(github.head_ref, 'renovate') }} id: push_to_quay uses: redhat-actions/push-to-registry@9986a6552bc4571882a4a67e016b17361412b4df # v2 with: diff --git a/.github/workflows/tekton-task-images-helm-publish.yaml b/.github/workflows/tekton-task-images-helm-publish.yaml index 50aad346b..b319da7bf 100644 --- a/.github/workflows/tekton-task-images-helm-publish.yaml +++ b/.github/workflows/tekton-task-images-helm-publish.yaml @@ -43,6 +43,7 @@ jobs: - name: Push to ghcr.io uses: redhat-actions/push-to-registry@9986a6552bc4571882a4a67e016b17361412b4df # v2 + if: ${{ !contains(github.head_ref, 'renovate') }} with: image: ${{ steps.build_image.outputs.image }} registry: ghcr.io/${{ github.repository }} @@ -51,7 +52,7 @@ jobs: tags: ${{ steps.build_image.outputs.tags }} - name: Push to Quay - if: ${{ env.REGISTRY }} != "" + if: ${{ env.REGISTRY }} != "" && ${{ !contains(github.head_ref, 'renovate') }} id: push_to_quay uses: redhat-actions/push-to-registry@9986a6552bc4571882a4a67e016b17361412b4df # v2 with: diff --git a/.github/workflows/toolbox-publish.yaml b/.github/workflows/toolbox-publish.yaml index cfa0afa35..b3e5df4b4 100644 --- a/.github/workflows/toolbox-publish.yaml +++ b/.github/workflows/toolbox-publish.yaml @@ -38,6 +38,7 @@ jobs: - name: Push to ghcr.io uses: redhat-actions/push-to-registry@9986a6552bc4571882a4a67e016b17361412b4df # v2 + if: ${{ !contains(github.head_ref, 'renovate') }} with: image: ${{ steps.build_image.outputs.image }} registry: ghcr.io/${{ github.repository }} @@ -46,7 +47,7 @@ jobs: tags: ${{ steps.build_image.outputs.tags }} - name: Push to Quay - if: ${{ env.REGISTRY }} != "" + if: ${{ env.REGISTRY }} != "" && ${{ !contains(github.head_ref, 'renovate') }} id: push_to_quay uses: redhat-actions/push-to-registry@9986a6552bc4571882a4a67e016b17361412b4df # v2 with: diff --git a/.github/workflows/ubi8-asciidoctor-publish.yaml b/.github/workflows/ubi8-asciidoctor-publish.yaml index ee8618e7b..f8e364c63 100644 --- a/.github/workflows/ubi8-asciidoctor-publish.yaml +++ b/.github/workflows/ubi8-asciidoctor-publish.yaml @@ -46,6 +46,7 @@ jobs: - name: Push to ghcr.io uses: redhat-actions/push-to-registry@9986a6552bc4571882a4a67e016b17361412b4df # v2 + if: ${{ !contains(github.head_ref, 'renovate') }} with: image: ${{ steps.build_image.outputs.image }} registry: ghcr.io/${{ github.repository }} @@ -54,7 +55,7 @@ jobs: tags: ${{ steps.build_image.outputs.tags }} - name: Push to Quay - if: ${{ env.REGISTRY }} != "" + if: ${{ env.REGISTRY }} != "" && ${{ !contains(github.head_ref, 'renovate') }} id: push_to_quay uses: redhat-actions/push-to-registry@9986a6552bc4571882a4a67e016b17361412b4df # v2 with: diff --git a/.github/workflows/ubi8-bats-publish.yaml b/.github/workflows/ubi8-bats-publish.yaml index a2eaadbba..33593a2a5 100644 --- a/.github/workflows/ubi8-bats-publish.yaml +++ b/.github/workflows/ubi8-bats-publish.yaml @@ -38,6 +38,7 @@ jobs: - name: Push to ghcr.io uses: redhat-actions/push-to-registry@9986a6552bc4571882a4a67e016b17361412b4df # v2 + if: ${{ !contains(github.head_ref, 'renovate') }} with: image: ${{ steps.build_image.outputs.image }} registry: ghcr.io/${{ github.repository }} @@ -46,7 +47,7 @@ jobs: tags: ${{ steps.build_image.outputs.tags }} - name: Push to Quay - if: ${{ env.REGISTRY }} != "" + if: ${{ env.REGISTRY }} != "" && ${{ !contains(github.head_ref, 'renovate') }} id: push_to_quay uses: redhat-actions/push-to-registry@9986a6552bc4571882a4a67e016b17361412b4df # v2 with: diff --git a/.github/workflows/ubi8-git-publish.yaml b/.github/workflows/ubi8-git-publish.yaml index fa28cd938..44f0cbe78 100644 --- a/.github/workflows/ubi8-git-publish.yaml +++ b/.github/workflows/ubi8-git-publish.yaml @@ -38,6 +38,7 @@ jobs: - name: Push to ghcr.io uses: redhat-actions/push-to-registry@9986a6552bc4571882a4a67e016b17361412b4df # v2 + if: ${{ !contains(github.head_ref, 'renovate') }} with: image: ${{ steps.build_image.outputs.image }} registry: ghcr.io/${{ github.repository }} @@ -46,7 +47,7 @@ jobs: tags: ${{ steps.build_image.outputs.tags }} - name: Push to Quay - if: ${{ env.REGISTRY }} != "" + if: ${{ env.REGISTRY }} != "" && ${{ !contains(github.head_ref, 'renovate') }} id: push_to_quay uses: redhat-actions/push-to-registry@9986a6552bc4571882a4a67e016b17361412b4df # v2 with: diff --git a/.github/workflows/ubi8-google-api-python-client-publish.yaml b/.github/workflows/ubi8-google-api-python-client-publish.yaml index 1fe464be5..698863ff7 100644 --- a/.github/workflows/ubi8-google-api-python-client-publish.yaml +++ b/.github/workflows/ubi8-google-api-python-client-publish.yaml @@ -38,6 +38,7 @@ jobs: - name: Push to ghcr.io uses: redhat-actions/push-to-registry@9986a6552bc4571882a4a67e016b17361412b4df # v2 + if: ${{ !contains(github.head_ref, 'renovate') }} with: image: ${{ steps.build_image.outputs.image }} registry: ghcr.io/${{ github.repository }} @@ -46,7 +47,7 @@ jobs: tags: ${{ steps.build_image.outputs.tags }} - name: Push to Quay - if: ${{ env.REGISTRY }} != "" + if: ${{ env.REGISTRY }} != "" && ${{ !contains(github.head_ref, 'renovate') }} id: push_to_quay uses: redhat-actions/push-to-registry@9986a6552bc4571882a4a67e016b17361412b4df # v2 with: