Skip to content

Commit

Permalink
Fix release branch
Browse files Browse the repository at this point in the history
  • Loading branch information
ruuushhh committed Jun 11, 2024
1 parent 40e002b commit 5b86f30
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/create_release_branch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,15 @@ jobs:
- name: Branch already exists
if: ${{env.branch_exists == 'true'}}
run: echo "message=Branch `${{env.release_branch}}` already exists." >> $GITHUB_ENV
- name: Commit Empty commit and push changes
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
git checkout ${{env.release_branch}}
git add .
git pull origin ${{ env.release_branch }}
git commit --allow-empty -m "Release branch creation commit"
git push origin ${{ env.release_branch }}
- name: Send message on Slack
uses: archive/[email protected]
id: notify
Expand Down

0 comments on commit 5b86f30

Please sign in to comment.