Fixed args.

This commit is contained in:
Tonye Jack 2020-12-11 08:23:56 -05:00
parent 298b831650
commit 744038b35c
2 changed files with 4 additions and 7 deletions

View File

@ -7,6 +7,7 @@ inputs:
required: true
default: ${{ github.token }}
outputs:
base_ref_branch:
description: 'The target branch of a pull request'
@ -18,10 +19,6 @@ outputs:
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ github.base_ref }}
- ${{ github.head_ref }}
- ${{ github.ref }}
branding:
icon: git-branch
color: white

View File

@ -2,6 +2,6 @@
set -e
echo "::set-output name=base_ref_branch::${0/refs\/heads\//}"
echo "::set-output name=head_ref_branch::${1/refs\/heads\//}"
echo "::set-output name=ref_branch::${2/refs\/heads\//}"
echo "::set-output name=base_ref_branch::${INPUT_BASE_REF/refs\/heads\//}"
echo "::set-output name=head_ref_branch::${INPUT_HEAD_REF/refs\/heads\//}"
echo "::set-output name=ref_branch::${INPUT_REF/refs\/heads\//}"