You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- cron: '11 0 1-25 12 *'# from the 1. December till 25. December every day at 11 AM (avoid load at full hours)
5
+
6
+
workflow_dispatch: # allow to manually start the workflow
7
+
8
+
# push: # (disabled) run on push, be carefull with this setting
9
+
# as the workflow should only be triggered at a rate lower than
10
+
# 4 times a hour to keep traffic on aoc site low
11
+
jobs:
12
+
update:
13
+
runs-on: ubuntu-latest
14
+
steps:
15
+
- uses: actions/checkout@v3 # clones your repo
16
+
17
+
- uses: joblo2213/aoc-badges-action@v3
18
+
with:
19
+
userid: 204401# your user id, see setup on how to obtain
20
+
session: ${{ secrets.AOC_SESSION }} # secret containing session code, see setup on how to obtain
21
+
22
+
# Optional inputs:
23
+
#
24
+
year: 2022# The year for which stats should be retrieved
25
+
# leaderboard: 'https://adventofcode.com/2020/leaderboard/private/view/00000.json' # The url of the leaderboard from witch the data is fetched. Typically your private leaderboard.
26
+
file: 'README.md'# The file that contains the badges
27
+
# dayRegex: '(?<=https:\/\/img\.shields\.io\/badge\/day%20📅-)[0-9]+(?=-blue)' # Regular expression that finds the content of the day badge iun your file.
28
+
starsRegex: '(?<=https:\/\/img\.shields\.io\/badge\/2022%20⭐-)[0-9]+(?=-yellow)'# Regular expression that finds the content of the stars badge iun your file.
29
+
# daysCompletedRegex: '(?<=https:\/\/img\.shields\.io\/badge\/days%20completed-)[0-9]+(?=-red)' # Regular expression that finds the content of the days completed badge iun your file.
30
+
31
+
- uses: stefanzweifel/git-auto-commit-action@v4 # Step that pushes these local changes back to your github repo
0 commit comments