Disable pull request creation in publish_release.yml
Comment out the pull request creation step in the workflow.
This commit is contained in:
committed by
GitHub
parent
91cdc557a1
commit
eb8801bfc8
20
.github/workflows/publish_release.yml
vendored
20
.github/workflows/publish_release.yml
vendored
@@ -47,16 +47,16 @@ jobs:
|
|||||||
git commit -m "chore: add VERSION $version" || echo "No changes"
|
git commit -m "chore: add VERSION $version" || echo "No changes"
|
||||||
git push --set-upstream origin "$branch"
|
git push --set-upstream origin "$branch"
|
||||||
|
|
||||||
- name: Create pull request
|
# - name: Create pull request
|
||||||
id: pr
|
# id: pr
|
||||||
uses: peter-evans/create-pull-request@v6
|
# uses: peter-evans/create-pull-request@v6
|
||||||
with:
|
# with:
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
# token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
branch: "update-version-${{ steps.draft.outputs.tag_name }}"
|
# branch: "update-version-${{ steps.draft.outputs.tag_name }}"
|
||||||
base: main
|
# base: main
|
||||||
title: "chore: add VERSION ${{ steps.draft.outputs.tag_name }}"
|
# title: "chore: add VERSION ${{ steps.draft.outputs.tag_name }}"
|
||||||
body: "This PR adds or updates the VERSION file for ${{ steps.draft.outputs.tag_name }}"
|
# body: "This PR adds or updates the VERSION file for ${{ steps.draft.outputs.tag_name }}"
|
||||||
labels: automated
|
# labels: automated
|
||||||
|
|
||||||
|
|
||||||
- name: Auto-merge PR
|
- name: Auto-merge PR
|
||||||
|
|||||||
Reference in New Issue
Block a user