Modify a template #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Humanize | |
on: push | |
jobs: | |
humanize: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Create human readable templates | |
run: ./humanize.sh | |
- name: Commit templates | |
run: | | |
git config --global user.name 'Your Name' | |
git config --global user.email '[email protected]' | |
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY | |
git checkout "${GITHUB_REF:11}" | |
git add --all | |
git commit -m "Humanize" | |
git push |