/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/license-builder.yml
38 строк
1 KB
dependabot[bot]
meta: bump actions/checkout from 6.0.2 to 7.0.0
03 июл 2026, 21:54
Не верифицирован
03 июл 2026, 21:54
0b7a308
Код
Авторство
О чём код?
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-slim steps: - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 with: persist-credentials: false - run: ./tools/license-builder.sh # Run the license builder tool - uses: gr2m/create-or-update-pull-request-action@b65137ca591da0b9f43bad7b24df13050ea45d1b # v1.10.1 # 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 <github-bot@iojs.org> 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