creativecreatorormaybenot
Committed by GitHub

Add license copyright year(s) action (#72)

* Add license copyright year action

* Update licenses.yml
name: Licenses
on:
schedule:
- cron: '11 1 11 1 *'
workflow_dispatch:
jobs:
years:
timeout-minutes: 11
runs-on: ubuntu-latest
name: Update copyright year(s)
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: FantasticFiasco/action-update-license-year@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
path: '**/LICENSE'
commitTitle: Update copyright year in LICENSE file(s)
prTitle: Update copyright year in LICENSE file(s)
prBody: New year is here and we want to keep up with time.
assignees: creativecreatorormaybenot
... ...