Skip to content

Update

Update #172

Workflow file for this run

name: Update
on:
schedule:
- cron: '0 0 * * 0'
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
- run: npm install
- run: node index.js
- name: Config
run: |
git config --global user.name 'Mimi'
git config --global user.email '[email protected]'
- name: Commit
run: |
git add contributors.svg
git commit -m 'Update contributors.svg'
- name: Push
run: |
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}
git push