Add shortcut to isEven #23
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
name: 🎄 Advent of Code Badges 🎄 | |
on: | |
schedule: | |
- cron: '3 12 1-25 12 *' | |
workflow_dispatch: | |
push: | |
paths: | |
- '**/Day*.kt' # only if a days source file was modified | |
jobs: | |
build: | |
name: ⭐ Update badges 📅 | |
runs-on: ubuntu-latest | |
if: startsWith(github.repository, 'derNiklaas') # don't run in forks | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: J0B10/aoc-badges-action@v3 | |
with: | |
userid: 455680 | |
session: ${{ secrets.AOC_SESSION }} | |
year: 2024 | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Update badges | |
file_pattern: README.md |