Skip to content

Commit e45d534

Browse files
authored
Add workflow to update copyright year in license file
1 parent ac0d42c commit e45d534

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Update copyright year(s) in license file
2+
3+
on:
4+
schedule:
5+
- cron: '0 3 1 1 *' # 03:00 AM on January 1
6+
workflow_dispatch:
7+
8+
jobs:
9+
update-license-year:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v6
13+
with:
14+
fetch-depth: 0
15+
- uses: FantasticFiasco/action-update-license-year@v3
16+
with:
17+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)