License update #14
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: License update | |
on: | |
schedule: | |
# 00:00:00 every Monday | |
# https://crontab.guru/#0_0_*_*_1 | |
- cron: 0 0 * * 1 | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
update_license: | |
permissions: | |
contents: write # for gr2m/create-or-update-pull-request-action to push local changes | |
pull-requests: write # for gr2m/create-or-update-pull-request-action to create a PR | |
if: github.repository == 'nodejs/node' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
persist-credentials: false | |
- run: ./tools/license-builder.sh # Run the license builder tool | |
- uses: gr2m/create-or-update-pull-request-action@77596e3166f328b24613f7082ab30bf2d93079d5 | |
# Creates a PR or update the Action's existing PR, or | |
# no-op if the base branch is already up-to-date. | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
author: Node.js GitHub Bot <[email protected]> | |
branch: actions/license-builder | |
title: 'doc: run license-builder' | |
body: > | |
License is likely out of date. This is an automatically generated PR by | |
the `license-builder.yml` GitHub Action, which runs `license-builder.sh` | |
and submits a new PR or updates an existing PR. | |
commit-message: 'doc: run license-builder' | |
labels: meta |