Skip to content

Commit

Permalink
fix: CD create beta release pr
Browse files Browse the repository at this point in the history
  • Loading branch information
shrunyan committed Mar 20, 2024
1 parent f9023b0 commit 28854ef
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/cd-dev-stage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
success_deploy_notification_to_slack:
runs-on: ubuntu-latest
if: ${{ success() }}
needs: [deploy_stage]
needs: [deploy_dev, deploy_stage]
steps:
- name: Success Deploy Notification To Slack
uses: rtCamp/action-slack-notify@v2
Expand All @@ -122,6 +122,8 @@ jobs:
runs-on: ubuntu-latest
needs: [deploy_dev, deploy_stage]
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Create Beta Release PR
run: gh pr create -B beta -H dev --title 'Beta Release' --body 'Created by Github action'
env:
Expand Down

0 comments on commit 28854ef

Please sign in to comment.