mirror of
https://github.com/nodejs/node.git
synced 2024-11-24 03:07:54 +01:00
8de2695fe5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.7 to 4.2.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](692973e3d9...d632683dd7
)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
PR-URL: https://github.com/nodejs/node/pull/55224
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
39 lines
1.4 KiB
YAML
39 lines
1.4 KiB
YAML
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@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
|
|
with:
|
|
persist-credentials: false
|
|
- run: ./tools/license-builder.sh # Run the license builder tool
|
|
- uses: gr2m/create-or-update-pull-request-action@86ec1766034c8173518f61d2075cc2a173fb8c97 # v1.9.4
|
|
# 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
|