| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 8cf9181 commit 8af4d31
23 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,4 +1,4 @@ | |||
| 1 | - name: "\U0001F41B Bug report" | ||
| 1 | + name: \U0001F41B Bug report | ||
| 2 | 2 | description: Create a report to help us improve | |
| 3 | 3 | body: | |
| 4 | 4 | - type: markdown | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | - name: "\U0001F680 Feature request" | ||
| 1 | + name: \U0001F680 Feature request | ||
| 2 | 2 | description: Suggest an idea for this project | |
| 3 | - labels: ["feature request"] | ||
| 3 | + labels: [feature request] | ||
| 4 | 4 | body: | |
| 5 | 5 | - type: markdown | |
| 6 | 6 | attributes: | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | - name: "\U0001F4D7 Open an issue regarding the Node.js API reference docs" | ||
| 1 | + name: \U0001F4D7 Open an issue regarding the Node.js API reference docs | ||
| 2 | 2 | description: Let us know about any problematic API reference documents | |
| 3 | - labels: ["doc"] | ||
| 3 | + labels: [doc] | ||
| 4 | 4 | body: | |
| 5 | 5 | - type: markdown | |
| 6 | 6 | attributes: | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | 1 | name: Report a flaky test | |
| 2 | 2 | description: Report a flaky test in our CI | |
| 3 | - labels: ["flaky-test"] | ||
| 3 | + labels: [flaky-test] | ||
| 4 | 4 | body: | |
| 5 | 5 | - type: markdown | |
| 6 | 6 | attributes: | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2,7 +2,7 @@ name: Authors update | |||
| 2 | 2 | on: | |
| 3 | 3 | schedule: | |
| 4 | 4 | # Run once a week at 00:05 AM UTC on Sunday. | |
| 5 | - - cron: '5 0 * * 0' | ||
| 5 | + - cron: 5 0 * * 0 | ||
| 6 | 6 | ||
| 7 | 7 | workflow_dispatch: | |
| 8 | 8 | ||
@@ -15,7 +15,7 @@ jobs: | |||
| 15 | 15 | with: | |
| 16 | 16 | fetch-depth: '0' # This is required to actually get all the authors | |
| 17 | 17 | persist-credentials: false | |
| 18 | - - run: "tools/update-authors.js" # Run the AUTHORS tool | ||
| 18 | + - run: tools/update-authors.js # Run the AUTHORS tool | ||
| 19 | 19 | - uses: gr2m/create-or-update-pull-request-action@v1 # Create a PR or update the Action's existing PR | |
| 20 | 20 | env: | |
| 21 | 21 | GITHUB_TOKEN: ${{ secrets.GH_USER_TOKEN }} | |
@@ -25,7 +25,7 @@ jobs: | |||
| 25 | 25 | Here are some new additions to the AUTHORS file. | |
| 26 | 26 | This is an automatically generated PR by the | |
| 27 | 27 | `authors.yml` GitHub Action, which runs `tools/update-authors.js`. | |
| 28 | - branch: "actions/authors-update" # Custom branch *just* for this Action. | ||
| 29 | - commit-message: "meta: update AUTHORS" | ||
| 28 | + branch: actions/authors-update # Custom branch *just* for this Action. | ||
| 29 | + commit-message: 'meta: update AUTHORS' | ||
| 30 | 30 | labels: meta | |
| 31 | - title: "meta: update AUTHORS" | ||
| 31 | + title: 'meta: update AUTHORS' | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -6,7 +6,7 @@ on: | |||
| 6 | 6 | # optimistic, it can take longer to run. | |
| 7 | 7 | # To understand why `schedule` is used instead of other events, refer to | |
| 8 | 8 | # ./doc/contributing/commit-queue.md | |
| 9 | - - cron: "*/5 * * * *" | ||
| 9 | + - cron: '*/5 * * * *' | ||
| 10 | 10 | ||
| 11 | 11 | env: | |
| 12 | 12 | NODE_VERSION: lts/* | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4,10 +4,10 @@ on: | |||
| 4 | 4 | pull_request: | |
| 5 | 5 | types: [opened, synchronize, reopened, ready_for_review] | |
| 6 | 6 | paths-ignore: | |
| 7 | - - '.mailmap' | ||
| 7 | + - .mailmap | ||
| 8 | 8 | - '**.md' | |
| 9 | - - 'AUTHORS' | ||
| 10 | - - 'doc/**' | ||
| 9 | + - AUTHORS | ||
| 10 | + - doc/** | ||
| 11 | 11 | - .github/** | |
| 12 | 12 | - '!.github/workflows/build-tarball.yml' | |
| 13 | 13 | push: | |
@@ -17,10 +17,10 @@ on: | |||
| 17 | 17 | - v[0-9]+.x-staging | |
| 18 | 18 | - v[0-9]+.x | |
| 19 | 19 | paths-ignore: | |
| 20 | - - '.mailmap' | ||
| 20 | + - .mailmap | ||
| 21 | 21 | - '**.md' | |
| 22 | - - 'AUTHORS' | ||
| 23 | - - 'doc/**' | ||
| 22 | + - AUTHORS | ||
| 23 | + - doc/** | ||
| 24 | 24 | - .github/** | |
| 25 | 25 | - '!.github/workflows/build-tarball.yml' | |
| 26 | 26 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,7 +1,7 @@ | |||
| 1 | 1 | name: Close stalled issues and PRs | |
| 2 | 2 | on: | |
| 3 | 3 | schedule: | |
| 4 | - - cron: "0 0 * * *" | ||
| 4 | + - cron: 0 0 * * * | ||
| 5 | 5 | ||
| 6 | 6 | env: | |
| 7 | 7 | CLOSE_MESSAGE: > | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -11,7 +11,7 @@ on: | |||
| 11 | 11 | # be read-only, and the Action won't have access to any other repository | |
| 12 | 12 | # secrets, which it needs to access Jenkins API. | |
| 13 | 13 | schedule: | |
| 14 | - - cron: "*/5 * * * *" | ||
| 14 | + - cron: '*/5 * * * *' | ||
| 15 | 15 | ||
| 16 | 16 | env: | |
| 17 | 17 | NODE_VERSION: lts/* | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -5,18 +5,18 @@ on: | |||
| 5 | 5 | types: [opened, synchronize, reopened, ready_for_review] | |
| 6 | 6 | paths-ignore: | |
| 7 | 7 | - '**.md' | |
| 8 | - - 'benchmark/**' | ||
| 9 | - - 'deps/**' | ||
| 10 | - - 'doc/**' | ||
| 8 | + - benchmark/** | ||
| 9 | + - deps/* | ||
| 10 | + - doc/** | ||
| 11 | 11 | - .github/** | |
| 12 | 12 | - '!.github/workflows/coverage-linux.yml' | |
| 13 | 13 | push: | |
| 14 | 14 | branches: [master, main] | |
| 15 | 15 | paths-ignore: | |
| 16 | 16 | - '**.md' | |
| 17 | - - 'benchmark/**' | ||
| 18 | - - 'deps/**' | ||
| 19 | - - 'doc/**' | ||
| 17 | + - benchmark/** | ||
| 18 | + - deps/** | ||
| 19 | + - doc/** | ||
| 20 | 20 | - .github/** | |
| 21 | 21 | - '!.github/workflows/coverage-linux.yml' | |
| 22 | 22 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments