Update AoC Badges #35
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# https://github.com/marketplace/actions/aoc-badges | |
name: Update AoC Badges | |
on: | |
schedule: | |
- cron: '22 6 1-26 12 *' | |
workflow_dispatch: | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: J0B10/aoc-badges-action@v3.0.0 | |
with: | |
userid: 1273997 | |
session: ${{ secrets.AOC_SESSION }} | |
year: 2022 | |
- uses: stefanzweifel/git-auto-commit-action@v4 # Step that pushes these local changes back to your github repo | |
with: | |
commit_message: Update badges | |
file_pattern: README.md | |
branch: badges |