mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 07:53:06 +01:00
c470386255
PR-URL: https://github.com/nodejs/node/pull/43378 Reviewed-By: LiviaMedeiros <livia@cirno.name> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Tierney Cyren <hello@bnb.im>
34 lines
1.2 KiB
YAML
34 lines
1.2 KiB
YAML
name: Authors update
|
|
on:
|
|
schedule:
|
|
# Run once a week at 00:05 AM UTC on Sunday.
|
|
- cron: 5 0 * * 0
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
authors_update:
|
|
if: github.repository == 'nodejs/node'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: '0' # This is required to actually get all the authors
|
|
persist-credentials: false
|
|
- run: tools/update-authors.mjs # Run the AUTHORS tool
|
|
- uses: gr2m/create-or-update-pull-request-action@6720400cad8e74d7adc64640e4e6ea6748b83d8f
|
|
# 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.GH_USER_TOKEN }}
|
|
with:
|
|
author: Node.js GitHub Bot <github-bot@iojs.org>
|
|
body: >
|
|
Here are some new additions to the AUTHORS file.
|
|
This is an automatically generated PR by the
|
|
`authors.yml` GitHub Action, which runs `tools/update-authors.mjs`.
|
|
branch: actions/authors-update # Custom branch *just* for this Action.
|
|
commit-message: 'meta: update AUTHORS'
|
|
labels: meta
|
|
title: 'meta: update AUTHORS'
|