From 6f225c599f4eeee8f71af9624f380328bf7dc62b Mon Sep 17 00:00:00 2001 From: Maksim Kopnov <44946644+mvktsk@users.noreply.github.com> Date: Thu, 29 Apr 2021 19:40:23 +0700 Subject: [PATCH] VDS-1275: Fix create-deploy-pr action version (#66) --- .github/workflows/deploy-pr.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-pr.yml b/.github/workflows/deploy-pr.yml index 6f2be0cd..568f7e47 100644 --- a/.github/workflows/deploy-pr.yml +++ b/.github/workflows/deploy-pr.yml @@ -26,7 +26,7 @@ jobs: - name: Create deploy PR in QA if: github.event.action != 'closed' && contains(github.event.pull_request.labels.*.name, 'deploy-qa') && !contains(github.event.pull_request.labels.*.name, 'deploy-demo') - uses: VirtoCommerce/vc-github-actions/create-deploy-pr@VDS-1275 + uses: VirtoCommerce/vc-github-actions/create-deploy-pr@master with: deployRepo: "vc-webstore-deploy" deployBranch: "qa" @@ -37,7 +37,7 @@ jobs: - name: Create deploy PR in Demo if: github.event.action == 'closed' && github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'deploy-demo') - uses: VirtoCommerce/vc-github-actions/create-deploy-pr@VDS-1275 + uses: VirtoCommerce/vc-github-actions/create-deploy-pr@master with: deployRepo: "vc-webstore-deploy" deployBranch: "master"