Skip to content

Commit

Permalink
COMMIT_SHA -> REF_TO_BACKPORT
Browse files Browse the repository at this point in the history
  • Loading branch information
JackPGreen committed Nov 26, 2024
1 parent f2a5e0e commit 0b32856
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/backport/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ inputs:
TARGET_BRANCH:
description: The branch in the repository to backport changes into
required: true
COMMIT_SHA:
REF_TO_BACKPORT:
description: The reference of the commit to be backported
required: true
BACKPORT_OPTIONS:
Expand Down Expand Up @@ -46,10 +46,10 @@ runs:
git fetch --all
backport_target_branch=upstream/"${{ inputs.TARGET_BRANCH }}"
echo "::debug::Running backport script to backport "${{ inputs.COMMIT_SHA }}" into \"${backport_target_branch}\""
echo "::debug::Running backport script to backport "${{ inputs.REF_TO_BACKPORT }}" into \"${backport_target_branch}\""
${GITHUB_WORKSPACE}/backport/backport \
"${{ inputs.COMMIT_SHA }}" \
"${{ inputs.REF_TO_BACKPORT }}" \
"${backport_target_branch}" \
--non-interactive \
${{ inputs.BACKPORT_OPTIONS }}
Expand Down

0 comments on commit 0b32856

Please sign in to comment.