Update copyright year in license file #3
This file contains hidden or 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: Update copyright year in license file | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 3 1 1 *' | |
| jobs: | |
| run: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Clone project | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Update license year | |
| uses: p3lim/license-year-updater@v2 | |
| with: | |
| files: | | |
| LICENSE.md | |
| Packages/se.hertzole.scriptable-values/LICENSE.md | |
| - name: Create pull request | |
| uses: peter-evans/create-pull-request@v5 | |
| with: | |
| title: Update license | |
| commit-message: "chore: update license" | |
| branch: update-license | |
| delete-branch: true |