Update action.yml
This commit is contained in:
parent
13a875c4f7
commit
e718ff01f8
1 changed files with 11 additions and 11 deletions
22
action.yml
22
action.yml
|
@ -6,7 +6,7 @@ inputs:
|
||||||
email:
|
email:
|
||||||
description: Committer's email address
|
description: Committer's email address
|
||||||
required: true
|
required: true
|
||||||
default: ${{ github.actor }}@users.noreply.github.com
|
default: ${{ github.actor }}@w9r.dev
|
||||||
name:
|
name:
|
||||||
description: Committer's username
|
description: Committer's username
|
||||||
required: true
|
required: true
|
||||||
|
@ -69,11 +69,11 @@ runs:
|
||||||
TAGS='--tags'
|
TAGS='--tags'
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "machine github.com" > "$HOME/.netrc"
|
echo "machine w9r.dev" > "$HOME/.netrc"
|
||||||
echo " login $GITHUB_ACTOR" >> "$HOME/.netrc"
|
echo " login $GITHUB_ACTOR" >> "$HOME/.netrc"
|
||||||
echo " password ${{ inputs.access_token }}" >> "$HOME/.netrc"
|
echo " password ${{ inputs.access_token }}" >> "$HOME/.netrc"
|
||||||
|
|
||||||
echo "machine api.github.com" >> "$HOME/.netrc"
|
echo "machine api.w9r.dev" >> "$HOME/.netrc"
|
||||||
echo " login $GITHUB_ACTOR" >> "$HOME/.netrc"
|
echo " login $GITHUB_ACTOR" >> "$HOME/.netrc"
|
||||||
echo " password ${{ inputs.access_token }}" >> "$HOME/.netrc"
|
echo " password ${{ inputs.access_token }}" >> "$HOME/.netrc"
|
||||||
|
|
||||||
|
@ -82,7 +82,7 @@ runs:
|
||||||
|
|
||||||
if [[ `git status --porcelain` ]]; then
|
if [[ `git status --porcelain` ]]; then
|
||||||
git add ${{ inputs.files }} -v
|
git add ${{ inputs.files }} -v
|
||||||
git commit -m "${{ inputs.commit_message }}" $EMPTY
|
git commit -S -m "${{ inputs.commit_message }}" $EMPTY
|
||||||
git branch git-commit-push-action-${{ github.run_id }}-${{ github.job }}
|
git branch git-commit-push-action-${{ github.run_id }}-${{ github.job }}
|
||||||
git fetch "${{ inputs.remote_repository }}" "$CURRENT_BRANCH"
|
git fetch "${{ inputs.remote_repository }}" "$CURRENT_BRANCH"
|
||||||
git checkout "$CURRENT_BRANCH"
|
git checkout "$CURRENT_BRANCH"
|
||||||
|
@ -117,7 +117,7 @@ runs:
|
||||||
|
|
||||||
CLONE_DIRECTORY=$(mktemp -d)
|
CLONE_DIRECTORY=$(mktemp -d)
|
||||||
|
|
||||||
echo "##### Cloning destination Github repository #####"
|
echo "##### Cloning destination W9r.dev repository #####"
|
||||||
# Setup git
|
# Setup git
|
||||||
git config --global user.email "${{ inputs.email }}"
|
git config --global user.email "${{ inputs.email }}"
|
||||||
git config --global user.name "${{ inputs.name }}"
|
git config --global user.name "${{ inputs.name }}"
|
||||||
|
@ -125,7 +125,7 @@ runs:
|
||||||
git clone "https://${{ inputs.access_token }}@github.com/$DESTINATION_OWNER/$DESTINATION_REPOSITORY.git" "$CLONE_DIRECTORY"
|
git clone "https://${{ inputs.access_token }}@github.com/$DESTINATION_OWNER/$DESTINATION_REPOSITORY.git" "$CLONE_DIRECTORY"
|
||||||
|
|
||||||
echo
|
echo
|
||||||
echo "##### Copying contents to remote Github repository #####"
|
echo "##### Copying contents to remote W9r.dev repository #####"
|
||||||
echo ""##### Current repo content #####"
|
echo ""##### Current repo content #####"
|
||||||
ls -lha
|
ls -lha
|
||||||
cp -rvf ${{ inputs.files }} $CLONE_DIRECTORY
|
cp -rvf ${{ inputs.files }} $CLONE_DIRECTORY
|
||||||
|
@ -134,7 +134,7 @@ runs:
|
||||||
echo ""##### Remote repo content after copying files #####"
|
echo ""##### Remote repo content after copying files #####"
|
||||||
ls -la "$CLONE_DIRECTORY"
|
ls -la "$CLONE_DIRECTORY"
|
||||||
|
|
||||||
REMOTE_URL=https://$DESTINATION_OWNER:${{ inputs.access_token }}@github.com/$DESTINATION_OWNER/$DESTINATION_REPOSITORY
|
REMOTE_URL=https://$DESTINATION_OWNER:${{ inputs.access_token }}@w9r.dev/$DESTINATION_OWNER/$DESTINATION_REPOSITORY
|
||||||
git remote set-url origin $REMOTE_URL
|
git remote set-url origin $REMOTE_URL
|
||||||
git fetch origin
|
git fetch origin
|
||||||
|
|
||||||
|
@ -164,13 +164,13 @@ runs:
|
||||||
echo
|
echo
|
||||||
echo "WARNING: Couldn't read remote_repository URL input."
|
echo "WARNING: Couldn't read remote_repository URL input."
|
||||||
echo "ACCEPTED FORMAT:"
|
echo "ACCEPTED FORMAT:"
|
||||||
echo "git://github.com/<owner>/<repo>.git"
|
echo "git://w9r.dev/<owner>/<repo>.git"
|
||||||
echo "or"
|
echo "or"
|
||||||
echo "git@github.com:<owner>/<repo>.git"
|
echo "git@w9r.dev:<owner>/<repo>.git"
|
||||||
echo "or"
|
echo "or"
|
||||||
echo "https://github.com/<owner>/<repo>.git"
|
echo "https://w9r.dev/<owner>/<repo>.git"
|
||||||
echo "or"
|
echo "or"
|
||||||
echo "https://github.com/<owner>/<repo>"
|
echo "https://w9r.dev/<owner>/<repo>"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
Loading…
Add table
Reference in a new issue