Skip to content

Commit 749cb98

Browse files
committed
fix(pr): fix the pr action
1 parent d95d23a commit 749cb98

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/create-pull-request.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,18 +37,18 @@ jobs:
3737
- name: pull-request
3838
uses: repo-sync/pull-request@v2
3939
with:
40+
github_token: ${{ secrets.ACCESS_TOKEN }}
4041
source_branch: ${{ steps.extract_branch.outputs.branch }}
4142
destination_branch: ${{ github.event.inputs.base }}
4243
pr_title: "Pulling ${{ steps.extract_branch.outputs.branch }} into ${{ github.event.inputs.base }}"
4344
pr_body: |
44-
# Merge ${{ steps.extract_branch.outputs.branch }} into ${{ github.event.inputs.base }}
45-
"${{ steps.extract_changelog.outputs.changelog }}"
45+
# Merge ${{ steps.extract_branch.outputs.branch }} into ${{ github.event.inputs.base }} \
46+
${{ steps.extract_changelog.outputs.changelog }}
4647
pr_reviewer: Reviewers # Comma-separated list (no spaces)
4748
pr_assignee: ${{ github.event.pusher.name }} # Comma-separated list (no spaces)
4849
pr_label: release,automatic-pr # Comma-separated list (no spaces)
4950
pr_draft: false # Creates pull request as draft
5051
pr_allow_empty: false # Creates pull request even if there are no changes
51-
github_token: ${{ secrets.ACCESS_TOKEN }}
5252

5353
- name: Create pull request
5454
uses: peter-evans/create-pull-request@v4

0 commit comments

Comments
 (0)