-
Notifications
You must be signed in to change notification settings - Fork 946
35 lines (30 loc) · 894 Bytes
/
Copy pathupdate-badge.yml
File metadata and controls
35 lines (30 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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 2024.md 2023.md 2022.md 2021.md 2020.md 2019.md 2018.md
- name: Git commit and push
run: |
git config user.email 'actions@github.com'
git config user.name 'github-actions'
if git commit -am 'update badges'; then
git push origin HEAD:${{ github.ref }}
fi