Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ekasbohm authored Jul 15, 2021
1 parent 58a2c98 commit e03ea2a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ inputs:
required: false
default: ${{ github.token }}
outputs:
pr-url:
pr_url:
description: "New PR URL"
value: ${{ steps.pull-request.outputs.pr-url }}
value: ${{ steps.pull-request.outputs.pr_url }}
runs:
using: "composite"
steps:
Expand All @@ -52,7 +52,7 @@ runs:
echo 'pr_url<<EOF' >> $GITHUB_ENV
gh pr create --title "${{ inputs.title }}" --body "${{ inputs.description }}" ${{ steps.set-draft.outputs.draft }} >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
echo "::set-output name=pr-url::${{ env.pr-url }}"
echo "::set-output name=pr_url::${{ env.pr_url }}"
env:
GITHUB_TOKEN: ${{ inputs.token }}
working-directory: ${{ inputs.directory }}
Expand Down

0 comments on commit e03ea2a

Please sign in to comment.