Skip to content

Commit 28854ef

Browse files
committed
fix: CD create beta release pr
1 parent f9023b0 commit 28854ef

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/cd-dev-stage.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
success_deploy_notification_to_slack:
106106
runs-on: ubuntu-latest
107107
if: ${{ success() }}
108-
needs: [deploy_stage]
108+
needs: [deploy_dev, deploy_stage]
109109
steps:
110110
- name: Success Deploy Notification To Slack
111111
uses: rtCamp/action-slack-notify@v2
@@ -122,6 +122,8 @@ jobs:
122122
runs-on: ubuntu-latest
123123
needs: [deploy_dev, deploy_stage]
124124
steps:
125+
- name: Checkout Repo
126+
uses: actions/checkout@v2
125127
- name: Create Beta Release PR
126128
run: gh pr create -B beta -H dev --title 'Beta Release' --body 'Created by Github action'
127129
env:

0 commit comments

Comments
 (0)