Skip to content

Update AoC badge

Update AoC badge #1558

Workflow file for this run

name: Update AoC badge
on:
push:
schedule:
- cron: '0 0 * 1-11 1'
- cron: '0 * * 12 *'
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
fetch-depth: 0
- name: Install packages
run: yarn
working-directory: ./.github/actions/update-badge
- name: Use local action
uses: ./.github/actions/update-badge
with:
ghToken: ${{ secrets.GITHUB_TOKEN }}
fileNames: README.md 2022.md 2021.md 2020.md 2019.md 2018.md
- name: Git commit and push
run: |
git config user.email '[email protected]'
git config user.name 'github-actions'
if git commit -am 'update badges'; then
git push origin HEAD:${{ github.ref }}
fi