update-copyright-years-in-license-file.yml 376 B

1234567891011121314151617
  1. ---
  2. name: Update copyright year(s) in license file
  3. on:
  4. schedule:
  5. - cron: "0 3 1 1 *" # 03:00 AM on January 1
  6. jobs:
  7. update-license-year:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - uses: actions/checkout@v3
  11. with:
  12. fetch-depth: 0
  13. - uses: FantasticFiasco/action-update-license-year@v2
  14. with:
  15. token: ${{ secrets.GITHUB_TOKEN }}