You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
376 B
17 lines
376 B
---
|
|
name: Update copyright year(s) in license file
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 3 1 1 *" # 03:00 AM on January 1
|
|
|
|
jobs:
|
|
update-license-year:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: FantasticFiasco/action-update-license-year@v2
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|