diff --git a/action.yml b/action.yml index 0e88772..aeb36da 100644 --- a/action.yml +++ b/action.yml @@ -3,6 +3,14 @@ name: "bosh-releaser" description: "Creates new version of bosh release" inputs: + repository: + description: "Github repository used to publish releases." + required: false + default: ${GITHUB_REPOSITORY} + token: + description: "Github token used to push changes after releasing" + required: false + default: ${GITHUB_TOKEN} target_branch: description: "Branch name to push release commit" required: false diff --git a/entrypoint.sh b/entrypoint.sh index 75d5427..4857177 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -18,6 +18,8 @@ fi echo "*** Inputs ***" echo " dir: $INPUT_DIR" +echo " repository: $INPUT_REPOSITORY" +echo " token: **redacted**" echo " override_existing: $INPUT_OVERRIDE_EXISTING" echo " tag_name: $INPUT_TAG_NAME" echo " target_branch: $INPUT_TARGET_BRANCH"