Skip to content

Commit

Permalink
Humanize on push
Browse files Browse the repository at this point in the history
  • Loading branch information
tothegills committed Aug 6, 2024
1 parent 0360758 commit 87bb5dd
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/humanize.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Humanize
on: push
jobs:
report:
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 commit -am "Humanize"
git push

0 comments on commit 87bb5dd

Please sign in to comment.