Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

VDS-1275: Fix create-deploy-pr action version #66

Merged
merged 1 commit into from
Apr 29, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deploy-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand Down