This commit is contained in:
Stefan Zweifel 2019-09-20 10:46:35 +02:00
parent 6c17ba31a9
commit 7fec5eda4a
2 changed files with 5 additions and 10 deletions

View File

@ -5,17 +5,16 @@ author: Stefan Zweifel <hello@stefanzweifel.io>
inputs:
commit_message:
description: 'Commit message'
description: Commit message
required: true
commit_author_name:
description: 'Name of the commit author'
description: Name of the commit author
required: true
commit_author_email:
description: 'Email address of the commit author'
description: Email address of the commit author
required: true
ref:
description: Branch to use
description: Branch where changes should be pushed too
required: true
runs:

View File

@ -25,11 +25,7 @@ if ! git diff --quiet
then
git_setup
: ${PUSH_BRANCH:=`echo "$GITHUB_HEAD_REF" | awk -F / '{ print $3 }' `}
echo "Push Branch Value: $PUSH_BRANCH";
echo "Input Ref: $INPUT_REF";
echo "INPUT_REF value: $INPUT_REF";
# Switch to branch from current Workflow run
git checkout $INPUT_REF