Skip to content

Commit 8af4d31

Browse files
Mesteerybengl
authored andcommitted
build,tools: change the quotes in YAML
Remove useless quotes and use single quotes when needed. PR-URL: #41756 Reviewed-By: Antoine du Hamel <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Tierney Cyren <[email protected]>
1 parent 8cf9181 commit 8af4d31

23 files changed

+148
-148
lines changed

.github/ISSUE_TEMPLATE/1-bug-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "\U0001F41B Bug report"
1+
name: \U0001F41B Bug report
22
description: Create a report to help us improve
33
body:
44
- type: markdown

.github/ISSUE_TEMPLATE/2-feature-request.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
name: "\U0001F680 Feature request"
1+
name: \U0001F680 Feature request
22
description: Suggest an idea for this project
3-
labels: ["feature request"]
3+
labels: [feature request]
44
body:
55
- type: markdown
66
attributes:

.github/ISSUE_TEMPLATE/3-api-ref-docs-problem.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
22
description: Let us know about any problematic API reference documents
3-
labels: ["doc"]
3+
labels: [doc]
44
body:
55
- type: markdown
66
attributes:

.github/ISSUE_TEMPLATE/4-report-a-flaky-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Report a flaky test
22
description: Report a flaky test in our CI
3-
labels: ["flaky-test"]
3+
labels: [flaky-test]
44
body:
55
- type: markdown
66
attributes:

.github/workflows/authors.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Authors update
22
on:
33
schedule:
44
# Run once a week at 00:05 AM UTC on Sunday.
5-
- cron: '5 0 * * 0'
5+
- cron: 5 0 * * 0
66

77
workflow_dispatch:
88

@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
fetch-depth: '0' # This is required to actually get all the authors
1717
persist-credentials: false
18-
- run: "tools/update-authors.js" # Run the AUTHORS tool
18+
- run: tools/update-authors.js # Run the AUTHORS tool
1919
- uses: gr2m/create-or-update-pull-request-action@v1 # Create a PR or update the Action's existing PR
2020
env:
2121
GITHUB_TOKEN: ${{ secrets.GH_USER_TOKEN }}
@@ -25,7 +25,7 @@ jobs:
2525
Here are some new additions to the AUTHORS file.
2626
This is an automatically generated PR by the
2727
`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'
3030
labels: meta
31-
title: "meta: update AUTHORS"
31+
title: 'meta: update AUTHORS'

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
# optimistic, it can take longer to run.
77
# To understand why `schedule` is used instead of other events, refer to
88
# ./doc/contributing/commit-queue.md
9-
- cron: "*/5 * * * *"
9+
- cron: '*/5 * * * *'
1010

1111
env:
1212
NODE_VERSION: lts/*

.github/workflows/build-tarball.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ on:
44
pull_request:
55
types: [opened, synchronize, reopened, ready_for_review]
66
paths-ignore:
7-
- '.mailmap'
7+
- .mailmap
88
- '**.md'
9-
- 'AUTHORS'
10-
- 'doc/**'
9+
- AUTHORS
10+
- doc/**
1111
- .github/**
1212
- '!.github/workflows/build-tarball.yml'
1313
push:
@@ -17,10 +17,10 @@ on:
1717
- v[0-9]+.x-staging
1818
- v[0-9]+.x
1919
paths-ignore:
20-
- '.mailmap'
20+
- .mailmap
2121
- '**.md'
22-
- 'AUTHORS'
23-
- 'doc/**'
22+
- AUTHORS
23+
- doc/**
2424
- .github/**
2525
- '!.github/workflows/build-tarball.yml'
2626

.github/workflows/close-stalled.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Close stalled issues and PRs
22
on:
33
schedule:
4-
- cron: "0 0 * * *"
4+
- cron: 0 0 * * *
55

66
env:
77
CLOSE_MESSAGE: >

.github/workflows/commit-queue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
# be read-only, and the Action won't have access to any other repository
1212
# secrets, which it needs to access Jenkins API.
1313
schedule:
14-
- cron: "*/5 * * * *"
14+
- cron: '*/5 * * * *'
1515

1616
env:
1717
NODE_VERSION: lts/*

.github/workflows/coverage-linux.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,18 @@ on:
55
types: [opened, synchronize, reopened, ready_for_review]
66
paths-ignore:
77
- '**.md'
8-
- 'benchmark/**'
9-
- 'deps/**'
10-
- 'doc/**'
8+
- benchmark/**
9+
- deps/*
10+
- doc/**
1111
- .github/**
1212
- '!.github/workflows/coverage-linux.yml'
1313
push:
1414
branches: [master, main]
1515
paths-ignore:
1616
- '**.md'
17-
- 'benchmark/**'
18-
- 'deps/**'
19-
- 'doc/**'
17+
- benchmark/**
18+
- deps/**
19+
- doc/**
2020
- .github/**
2121
- '!.github/workflows/coverage-linux.yml'
2222

0 commit comments

Comments
 (0)