Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2021-12-13 08:43:10 +0300
committerNode.js GitHub Bot <github-bot@iojs.org>2021-12-16 00:38:35 +0300
commit41e1de6f40396295136748ff77b4d02640f4381e (patch)
treeff493f71e0cf3292abeb66b8ff88b95a9ad61c03 /.github
parent6749e3fb1c32c8c0ee85fa16bbb865fafa2b0c8f (diff)
build,tools: automate enforcement of emeritus criteria
PR-URL: https://github.com/nodejs/node/pull/41155 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Filip Skokan <panva.ip@gmail.com> Reviewed-By: Stewart X Addison <sxa@redhat.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Danielle Adams <adamzdanielle@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Gus Caplan <me@gus.host>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/find-inactive-collaborators.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/find-inactive-collaborators.yml b/.github/workflows/find-inactive-collaborators.yml
index 942fcd77c81..643e3ea4a6b 100644
--- a/.github/workflows/find-inactive-collaborators.yml
+++ b/.github/workflows/find-inactive-collaborators.yml
@@ -9,7 +9,6 @@ on:
env:
NODE_VERSION: lts/*
- NUM_COMMITS: 5000
jobs:
find:
@@ -19,7 +18,7 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
- fetch-depth: ${{ env.NUM_COMMITS }}
+ fetch-depth: 0
persist-credentials: false
- name: Use Node.js ${{ env.NODE_VERSION }}
@@ -28,7 +27,7 @@ jobs:
node-version: ${{ env.NODE_VERSION }}
- name: Find inactive collaborators
- run: tools/find-inactive-collaborators.mjs ${{ env.NUM_COMMITS }}
+ run: tools/find-inactive-collaborators.mjs
- name: Open pull request
uses: gr2m/create-or-update-pull-request-action@v1