Skip to content

Commit eb8801b

Browse files
Disable pull request creation in publish_release.yml
Comment out the pull request creation step in the workflow.
1 parent 91cdc55 commit eb8801b

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/publish_release.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,16 @@ jobs:
4747
git commit -m "chore: add VERSION $version" || echo "No changes"
4848
git push --set-upstream origin "$branch"
4949
50-
- name: Create pull request
51-
id: pr
52-
uses: peter-evans/create-pull-request@v6
53-
with:
54-
token: ${{ secrets.GITHUB_TOKEN }}
55-
branch: "update-version-${{ steps.draft.outputs.tag_name }}"
56-
base: main
57-
title: "chore: add VERSION ${{ steps.draft.outputs.tag_name }}"
58-
body: "This PR adds or updates the VERSION file for ${{ steps.draft.outputs.tag_name }}"
59-
labels: automated
50+
# - name: Create pull request
51+
# id: pr
52+
# uses: peter-evans/create-pull-request@v6
53+
# with:
54+
# token: ${{ secrets.GITHUB_TOKEN }}
55+
# branch: "update-version-${{ steps.draft.outputs.tag_name }}"
56+
# base: main
57+
# title: "chore: add VERSION ${{ steps.draft.outputs.tag_name }}"
58+
# body: "This PR adds or updates the VERSION file for ${{ steps.draft.outputs.tag_name }}"
59+
# labels: automated
6060

6161

6262
- name: Auto-merge PR

0 commit comments

Comments
 (0)