This repository has been archived by the owner on Jul 11, 2024. It is now read-only.
licenses #11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: licenses | |
on: | |
schedule: | |
- cron: '0 0 1 1 *' | |
workflow_dispatch: | |
jobs: | |
years: | |
timeout-minutes: 11 | |
runs-on: ubuntu-latest | |
name: 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) | |
commitAuthorName: creativecreatorormaybenot | |
commitAuthorEmail: creativecreatorormaybenot@gmail.com | |
prTitle: Update copyright year in LICENSE file(s) | |
prBody: New Year is here and we want to keep up with time :) | |
assignees: creativecreatorormaybenot |