ci: do not create branch during release workflow

This seems to bother the create-pull-request action.
See: https://github.com/peter-evans/create-pull-request/issues/1203
This commit is contained in:
Otto Bittner 2023-04-03 08:58:06 +02:00
parent cc2bde9a3e
commit 180ef931fd

View File

@ -343,13 +343,6 @@ jobs:
with:
ref: ${{ needs.verify-inputs.outputs.RELEASE_BRANCH }}
- name: Create branch with changes
run: |
git config --global user.name "release[bot]"
git config --global user.email "release[bot]@users.noreply.github.com"
git fetch
git checkout -b "${NEW_BRANCH}"
- name: Create PR
uses: peter-evans/create-pull-request@38e0b6e68b4c852a5500a94740f0e535e0d7ba54 # v4.2.4
with: