From a61e4a95bcea4001fd1aded2f0126a72837e86ff Mon Sep 17 00:00:00 2001 From: Akihito Koriyama Date: Fri, 30 Dec 2022 05:05:09 +0900 Subject: [PATCH] Add update-copyright-years-in-license-file.yml --- .../update-copyright-years-in-license-file.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/update-copyright-years-in-license-file.yml diff --git a/.github/workflows/update-copyright-years-in-license-file.yml b/.github/workflows/update-copyright-years-in-license-file.yml new file mode 100644 index 0000000..f432106 --- /dev/null +++ b/.github/workflows/update-copyright-years-in-license-file.yml @@ -0,0 +1,17 @@ +name: Update copyright year in license file + +on: + workflow_dispatch: + schedule: + - cron: "0 3 1 1 *" + +jobs: + run: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + - uses: FantasticFiasco/action-update-license-year@v2 + with: + token: ${{ secrets.GITHUB_TOKEN }}