-
Notifications
You must be signed in to change notification settings - Fork 30.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into del_experimental_modules
- Loading branch information
Showing
19,513 changed files
with
4,607,886 additions
and
1,985,880 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: "\U0001F41B Bug report" | ||
description: Create a report to help us improve | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for reporting an issue. | ||
This issue tracker is for bugs and issues found within Node.js core. | ||
If you require more general support please file an issue on our help repo. https://github.com/nodejs/help | ||
Please fill in as much of the form below as you're able. | ||
- type: input | ||
attributes: | ||
label: Version | ||
description: Output of `node -v` | ||
- type: input | ||
attributes: | ||
label: Platform | ||
description: | | ||
UNIX: output of `uname -a` | ||
Windows: output of `"$([Environment]::OSVersion | ForEach-Object VersionString) $(if ([Environment]::Is64BitOperatingSystem) { "x64" } else { "x86" })"` in PowerShell console | ||
- type: input | ||
attributes: | ||
label: Subsystem | ||
description: If known, please specify affected core module name | ||
- type: textarea | ||
attributes: | ||
label: What steps will reproduce the bug? | ||
description: Enter details about your bug, preferably a simple code snippet that can be run using `node` directly without installing third-party dependencies. | ||
- type: textarea | ||
attributes: | ||
label: How often does it reproduce? Is there a required condition? | ||
- type: textarea | ||
attributes: | ||
label: What is the expected behavior? | ||
description: If possible please provide textual output instead of screenshots. | ||
- type: textarea | ||
attributes: | ||
label: What do you see instead? | ||
description: If possible please provide textual output instead of screenshots. | ||
- type: textarea | ||
attributes: | ||
label: Additional information | ||
description: Tell us anything else you think we should know. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
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@v2 | ||
with: | ||
fetch-depth: '0' # This is required to actually get all the authors | ||
- run: "tools/update-authors.js" # Run the AUTHORS tool | ||
- uses: gr2m/create-or-update-pull-request-action@v1 # Create a PR or update the Action's existing PR | ||
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.js`." | ||
branch: "actions/authors-update" # Custom branch *just* for this Action. | ||
commit-message: "meta: update AUTHORS" | ||
labels: meta | ||
title: "meta: update AUTHORS" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.