Skip to content

Update AoC badge

Update AoC badge #31

Workflow file for this run

name: Update AoC badge
on:
push:
schedule:
- cron: "0 0 * 1-11 1"
- cron: "0 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: npm install
working-directory: ./.github/actions/update-badge
- name: Use local action
uses: ./.github/actions/update-badge
with:
ghToken: ${{ secrets.GITHUB_TOKEN }}
inputFile: SOLUTIONS.md
outputFile: SOLUTIONS.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