Skip to content

Commit 188e801

Browse files
committed
Merge remote-tracking branch 'node/master' into wpt/user-timing
# Conflicts: # test/fixtures/wpt/README.md
2 parents 7d17e62 + d0b440c commit 188e801

File tree

269 files changed

+32430
-28137
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

269 files changed

+32430
-28137
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
# tls/crypto
5555

5656
/lib/internal/crypto/* @nodejs/crypto
57-
/lib/internal/tls.js @nodejs/crypto @nodejs/net
57+
/lib/internal/tls/* @nodejs/crypto @nodejs/net
5858
/lib/crypto.js @nodejs/crypto
5959
/lib/tls.js @nodejs/crypto @nodejs/net
6060
/src/node_crypto* @nodejs/crypto

.github/workflows/build-tarball.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Build from tarball
22

33
on:
44
pull_request:
5+
types: [opened, synchronize, reopened, ready_for_review]
56
push:
67
branches:
78
- master

.github/workflows/build-windows.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: build-windows
22

33
on:
44
pull_request:
5+
types: [opened, synchronize, reopened, ready_for_review]
56
push:
67
branches:
78
- master

.github/workflows/commit-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
# Last 100 commits should be enough for a PR
1212
fetch-depth: 100
1313
- name: Use Node.js 12
14-
uses: actions/setup-node@v1
14+
uses: actions/setup-node@v2
1515
with:
1616
node-version: 12.x
1717
- name: Validate commit messages

.github/workflows/coverage-linux.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: coverage-linux
22

33
on:
44
pull_request:
5+
types: [opened, synchronize, reopened, ready_for_review]
56
paths-ignore:
67
- 'doc/**'
78
- 'deps/**'

.github/workflows/coverage-windows.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: coverage-windows
22

33
on:
44
pull_request:
5+
types: [opened, synchronize, reopened, ready_for_review]
56
paths-ignore:
67
- 'doc/**'
78
- 'deps/**'
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Find inactive collaborators
2+
3+
on:
4+
schedule:
5+
# Run on the 15th day of the month at 4:05 AM UTC.
6+
- cron: '5 4 15 * *'
7+
8+
workflow_dispatch:
9+
10+
env:
11+
NODE_VERSION: 16.x
12+
NUM_COMMITS: 5000
13+
14+
jobs:
15+
find:
16+
17+
runs-on: ubuntu-latest
18+
19+
steps:
20+
- uses: actions/checkout@v2
21+
with:
22+
fetch-depth: ${{ env.NUM_COMMITS }}
23+
24+
- name: Use Node.js ${{ env.NODE_VERSION }}
25+
uses: actions/setup-node@v2
26+
with:
27+
node-version: ${{ env.NODE_VERSION }}
28+
29+
- name: Find inactive collaborators
30+
run: tools/find-inactive-collaborators.mjs ${{ env.NUM_COMMITS }}

.github/workflows/label-pr.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ jobs:
1111
steps:
1212
- uses: nodejs/node-pr-labeler@v1
1313
with:
14+
repo-token: ${{ secrets.GH_USER_TOKEN }}
1415
configuration-path: .github/label-pr-config.yml

.github/workflows/linters.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: linters
22

33
on:
44
pull_request:
5+
types: [opened, synchronize, reopened, ready_for_review]
56
push:
67
branches:
78
- master

.github/workflows/misc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: misc
22

33
on:
44
pull_request:
5+
types: [opened, synchronize, reopened, ready_for_review]
56
push:
67
branches:
78
- master

0 commit comments

Comments
 (0)