Skip to content

Commit c9d219f

Browse files
Merge pull request #1006 from nodejs/main
Create a new pull request by comparing changes across two branches
2 parents 6f4c8dc + 097a528 commit c9d219f

File tree

120 files changed

+2641
-1038
lines changed

Some content is hidden

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

120 files changed

+2641
-1038
lines changed

.github/workflows/auto-start-ci.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,15 @@ jobs:
5959

6060
- name: Setup @node-core/utils
6161
run: |
62-
ncu-config set username ${{ secrets.JENKINS_USER }}
63-
ncu-config set token "${{ secrets.GH_USER_TOKEN }}"
64-
ncu-config set jenkins_token ${{ secrets.JENKINS_TOKEN }}
62+
ncu-config set username "$USERNAME"
63+
ncu-config set token "$GH_TOKEN"
64+
ncu-config set jenkins_token "$JENKINS_TOKEN"
6565
ncu-config set owner "${{ github.repository_owner }}"
6666
ncu-config set repo "$(echo ${{ github.repository }} | cut -d/ -f2)"
67+
env:
68+
USERNAME: ${{ secrets.JENKINS_USER }}
69+
GH_TOKEN: ${{ secrets.GH_USER_TOKEN }}
70+
JENKINS_TOKEN: ${{ secrets.JENKINS_TOKEN }}
6771

6872
- name: Start the CI
6973
run: ./tools/actions/start-ci.sh ${{ needs.get-prs-for-ci.outputs.numbers }}

.github/workflows/commit-queue.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,15 @@ jobs:
8686
run: |
8787
ncu-config set branch ${GITHUB_REF_NAME}
8888
ncu-config set upstream origin
89-
ncu-config set username "${{ secrets.GH_USER_NAME }}"
90-
ncu-config set token "${{ secrets.GH_USER_TOKEN }}"
91-
ncu-config set jenkins_token "${{ secrets.JENKINS_TOKEN }}"
89+
ncu-config set username "$USERNAME"
90+
ncu-config set token "$GH_TOKEN"
91+
ncu-config set jenkins_token "$JENKINS_TOKEN"
9292
ncu-config set repo "${REPOSITORY}"
9393
ncu-config set owner "${OWNER}"
94+
env:
95+
USERNAME: ${{ secrets.JENKINS_USER }}
96+
GH_TOKEN: ${{ secrets.GH_USER_TOKEN }}
97+
JENKINS_TOKEN: ${{ secrets.JENKINS_TOKEN }}
9498

9599
- name: Start the Commit Queue
96100
run: ./tools/actions/commit-queue.sh ${{ env.OWNER }} ${{ env.REPOSITORY }} ${{ needs.get_mergeable_prs.outputs.numbers }}

.github/workflows/coverage-linux-without-intl.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ on:
1212
- tools/gyp/**
1313
- tools/test.py
1414
- .github/workflows/coverage-linux-without-intl.yml
15+
- codecov.yml
1516
push:
1617
branches:
1718
- main
@@ -24,6 +25,7 @@ on:
2425
- tools/gyp/**
2526
- tools/test.py
2627
- .github/workflows/coverage-linux-without-intl.yml
28+
- codecov.yml
2729

2830
concurrency:
2931
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

.github/workflows/coverage-linux.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ on:
1212
- tools/gyp/**
1313
- tools/test.py
1414
- .github/workflows/coverage-linux.yml
15+
- codecov.yml
1516
push:
1617
branches:
1718
- main
@@ -24,6 +25,7 @@ on:
2425
- tools/gyp/**
2526
- tools/test.py
2627
- .github/workflows/coverage-linux.yml
28+
- codecov.yml
2729

2830
concurrency:
2931
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

.github/workflows/coverage-windows.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ on:
1212
- tools/gyp/**
1313
- tools/test.py
1414
- .github/workflows/coverage-windows.yml
15+
- codecov.yml
1516
push:
1617
branches:
1718
- main
@@ -24,6 +25,7 @@ on:
2425
- tools/gyp/**
2526
- tools/test.py
2627
- .github/workflows/coverage-windows.yml
28+
- codecov.yml
2729

2830
concurrency:
2931
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}

.github/workflows/notify-on-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
env:
6161
SLACK_COLOR: '#DE512A'
6262
SLACK_ICON: https://github.com/nodejs.png?size=48
63-
SLACK_TITLE: Invalid commit was pushed to ${{ github.repository.default_branch }}
63+
SLACK_TITLE: Invalid commit was pushed to ${{ github.ref }}
6464
SLACK_MESSAGE: |
6565
<!here> A commit with an invalid message was pushed to <https://github.com/${{ github.repository }}/tree/${{ github.ref_name }}|${{ github.repository }}@${{ github.ref_name }}> by <https://github.com/${{ github.actor }}|${{ github.actor }}>.
6666

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ release.
3838
</tr>
3939
<tr>
4040
<td valign="top">
41-
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.5.0">22.5.0</a></b><br/>
41+
<b><a href="doc/changelogs/CHANGELOG_V22.md#22.5.1">22.5.1</a></b><br/>
42+
<a href="doc/changelogs/CHANGELOG_V22.md#22.5.0">22.5.0</a><br/>
4243
<a href="doc/changelogs/CHANGELOG_V22.md#22.4.1">22.4.1</a><br/>
4344
<a href="doc/changelogs/CHANGELOG_V22.md#22.4.0">22.4.0</a><br/>
4445
<a href="doc/changelogs/CHANGELOG_V22.md#22.3.0">22.3.0</a><br/>

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,8 @@ with-code-cache test-code-cache:
175175
out/Makefile: config.gypi common.gypi node.gyp \
176176
deps/uv/uv.gyp deps/llhttp/llhttp.gyp deps/zlib/zlib.gyp \
177177
deps/simdutf/simdutf.gyp deps/ada/ada.gyp deps/nbytes/nbytes.gyp \
178-
tools/v8_gypfiles/toolchain.gypi tools/v8_gypfiles/features.gypi \
178+
tools/v8_gypfiles/toolchain.gypi \
179+
tools/v8_gypfiles/features.gypi \
179180
tools/v8_gypfiles/inspector.gypi tools/v8_gypfiles/v8.gyp
180181
$(PYTHON) tools/gyp_node.py -f make
181182

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,8 @@ For information about the governance of the Node.js project, see
393393
**Marco Ippolito** <<[email protected]>> (he/him)
394394
* [marsonya](https://github.com/marsonya) -
395395
**Akhil Marsonya** <<[email protected]>> (he/him)
396+
* [MattiasBuelens](https://github.com/MattiasBuelens) -
397+
**Mattias Buelens** <<[email protected]>> (he/him)
396398
* [mcollina](https://github.com/mcollina) -
397399
**Matteo Collina** <<[email protected]>> (he/him)
398400
* [meixg](https://github.com/meixg) -

codecov.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,13 @@ codecov:
1111
branch: main
1212
notify:
1313
# Wait for all coverage builds:
14-
after_n_builds: 2
14+
# - coverage-linux.yml
15+
# - coverage-windows.yml
16+
# - coverage-linux-without-intl.yml
17+
after_n_builds: 3
1518

1619
coverage:
20+
# Useful for blocking Pull Requests that don't meet a particular coverage threshold.
1721
status:
1822
project: off
1923
patch: off

0 commit comments

Comments
 (0)