Skip to content

Commit

Permalink
Add workflow to update copyright in LICENSE (#62)
Browse files Browse the repository at this point in the history
* Add update-license-copyright-years.yml
* It runs on Jan 1 each year
  • Loading branch information
sleberknight authored Nov 8, 2023
1 parent 532a8a6 commit ba933df
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Update copyright year(s) in license file

on:
schedule:
- cron: '14 4 1 1 *' # 04:14 AM on January 1
workflow_dispatch:
# no inputs needed here

jobs:
update-license-year:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: FantasticFiasco/action-update-license-year@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
path: LICENSE
labels: documentation

0 comments on commit ba933df

Please sign in to comment.