Skip to content

Commit

Permalink
Update action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
melipass authored Jun 30, 2021
1 parent dfe531f commit 46c8aaa
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,20 @@ runs:
LASTFM_USER: ${{ inputs.LASTFM_USER }}
run: python ${{ github.action_path }}/lastfm.py
shell: bash
- name: commit changes
continue-on-error: true
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add -A
git commit -m "Updated last.fm's weekly chart" -a
- name: push changes
continue-on-error: true
uses: ad-m/github-push-action@v0.6.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}\
branch: main
branding:
icon: 'music'
color: 'red'

0 comments on commit 46c8aaa

Please sign in to comment.