Skip to content

Commit

Permalink
add repository and token param
Browse files Browse the repository at this point in the history
  • Loading branch information
o-orand committed Jan 16, 2024
1 parent 1411ff7 commit d95e80e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
8 changes: 8 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit d95e80e

Please sign in to comment.