Skip to content

Commit

Permalink
fix(pr): fix the pr action
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelAlphonso committed Jun 6, 2022
1 parent 92f3b44 commit 382d8bd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/create-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
CHANGELOG="${CHANGELOG//'%'/'%25'}"
CHANGELOG="${CHANGELOG//$'\n'/'%0A'}"
CHANGELOG="${CHANGELOG//$'\r'/'%0D'}"
echo "::set-output name=changelog::CHANGELOG"
echo "::set-output name=changelog::$CHANGELOG"
id: extract_changelog

- name: pull-request
Expand All @@ -55,10 +55,10 @@ jobs:
destination_branch: ${{ github.event.inputs.base }}
pr_title: "Pulling ${{ steps.extract_branch.outputs.branch }} into ${{ github.event.inputs.base }}"
pr_body: |
# Merge ${{ steps.extract_branch.outputs.branch }} into ${{ github.event.inputs.base }} \
# Merge ${{ steps.extract_branch.outputs.branch }} into ${{ github.event.inputs.base }}
${{ steps.extract_changelog.outputs.changelog }}
pr_reviewer: "@locomotive-charcoal/reviewers" # Comma-separated list (no spaces)
pr_assignee: ${{ github.event.inputs.user_name }} # Comma-separated list (no spaces)
# pr_assignee: ${{ github.event.inputs.user_name }} # Comma-separated list (no spaces)
pr_label: release,automatic-pr # Comma-separated list (no spaces)
pr_draft: false # Creates pull request as draft
pr_allow_empty: false # Creates pull request even if there are no changes
Expand Down

0 comments on commit 382d8bd

Please sign in to comment.