aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/draft_new_release.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/draft_new_release.yml')
-rw-r--r--.github/workflows/draft_new_release.yml16
1 files changed, 4 insertions, 12 deletions
diff --git a/.github/workflows/draft_new_release.yml b/.github/workflows/draft_new_release.yml
index 0e91926b..f1ff1f96 100644
--- a/.github/workflows/draft_new_release.yml
+++ b/.github/workflows/draft_new_release.yml
@@ -30,18 +30,10 @@ jobs:
git config user.name "GitHub Actions"
git config user.email noreply@github.com
- - name: Commit changelog
- run: |
- git add CHANGELOG.md
- git commit --message "Prepare release ${{ env.RELEASE_VERSION }}"
-
- - name: Push new branch
- run: git push origin release-${{ env.RELEASE_VERSION }}
-
- - name: Create pull request
- uses: thomaseizinger/create-pull-request@1.0.0
+ - name: Create Pull Request
+ uses: peter-evans/create-pull-request@v3
with:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- head: release-${{ env.RELEASE_VERSION }}
+ commit-message: "Prepare release ${{ env.RELEASE_VERSION }}"
+ branch: release-${{ env.RELEASE_VERSION }}
base: release
title: Release ${{ env.RELEASE_VERSION }}