diff --git a/README.md b/README.md index a8deabb..5236c5c 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,9 @@ For the repository `https://github.com/cpina/push-to-another-repository-output` ### `user-email` (argument) The email that will be used for the commit in the destination-repository-name. +### `destination-repository-username` (argument) [optional] +The Username/Organization for the destination repository, if different from `destination-github-username`. For the repository `https://github.com/cpina/push-to-another-repository-output` is `cpina`. + ### `API_TOKEN_GITHUB` (environment) E.g.: `API_TOKEN_GITHUB: ${{ secrets.API_TOKEN_GITHUB }}` diff --git a/action.yml b/action.yml index 5f639b8..99e77be 100644 --- a/action.yml +++ b/action.yml @@ -13,6 +13,9 @@ inputs: user-email: description: 'Email for the git commit' required: true + destination-repository-username: + description: '[Optional] Username/organization for the destination repository' + required: false runs: using: 'docker' image: 'Dockerfile' @@ -21,6 +24,7 @@ runs: - ${{ inputs.destination-github-username }} - ${{ inputs.destination-repository-name }} - ${{ inputs.user-email }} + - ${{ inputs.destination-repository-username }} branding: icon: 'git-commit' color: 'green' diff --git a/entrypoint.sh b/entrypoint.sh index cdbb5d7..a9b559a 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -5,13 +5,18 @@ FOLDER="$1" GITHUB_USERNAME="$2" GITHUB_REPO="$3" USER_EMAIL="$4" +REPO_USERNAME="$5" + +if [ -z "$REPO_USERNAME" ] then + REPO_USERNAME= $GITHUB_USERNAME +fi CLONE_DIR=$(mktemp -d) # Setup git git config --global user.email "$USER_EMAIL" git config --global user.name "$GITHUB_USERNAME" -git clone "https://$API_TOKEN_GITHUB@github.com/$GITHUB_USERNAME/$GITHUB_REPO.git" "$CLONE_DIR" +git clone "https://$API_TOKEN_GITHUB@github.com/$REPO_USERNAME/$GITHUB_REPO.git" "$CLONE_DIR" ls -la "$CLONE_DIR"