From 3931c8e55b29be871ee2b5f461b93f8e3d2f4a0f Mon Sep 17 00:00:00 2001 From: shirtabachii Date: Mon, 10 Jul 2023 12:10:58 +0300 Subject: [PATCH] Create new workflow for copy Redis image to Quay --- .github/workflows/copy-redis-image.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/copy-redis-image.yml b/.github/workflows/copy-redis-image.yml index 57599f94..b2466032 100644 --- a/.github/workflows/copy-redis-image.yml +++ b/.github/workflows/copy-redis-image.yml @@ -1,9 +1,5 @@ name: Copy Redis Image - -on: - push: - branches: - - argocd/cr-19101-copy-redis-image +on: pull_request jobs: copy: @@ -34,6 +30,6 @@ jobs: - name: Copy Redis Image env: SRC_IMAGE_REPO: public.ecr.aws/docker/library/redis - DST_IMAGE_REPO: quay.io/codefresh/redis-test + DST_IMAGE_REPO: quay.io/codefresh/redis run: | regctl image copy ${{ env.SRC_IMAGE_REPO }}:${{ env.VERSION }} ${{ env.DST_IMAGE_REPO }}:${{ env.VERSION }} --verbosity debug