-
Notifications
You must be signed in to change notification settings - Fork 30k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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]>
- Loading branch information
Showing
23 changed files
with
148 additions
and
148 deletions.
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 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 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name: Close stalled issues and PRs | ||
on: | ||
schedule: | ||
- cron: "0 0 * * *" | ||
- cron: 0 0 * * * | ||
|
||
env: | ||
CLOSE_MESSAGE: > | ||
|
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 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 |
---|---|---|
|
@@ -3,7 +3,7 @@ name: Find inactive collaborators | |
on: | ||
schedule: | ||
# Run every Monday at 4:05 AM UTC. | ||
- cron: '5 4 * * 1' | ||
- cron: 5 4 * * 1 | ||
|
||
workflow_dispatch: | ||
|
||
|
@@ -37,6 +37,6 @@ jobs: | |
author: Node.js GitHub Bot <[email protected]> | ||
branch: actions/inactive-collaborators | ||
body: This PR was generated by tools/find-inactive-collaborators.yml. | ||
commit-message: "meta: move one or more collaborators to emeritus" | ||
commit-message: 'meta: move one or more collaborators to emeritus' | ||
labels: meta | ||
title: "meta: move one or more collaborators to emeritus" | ||
title: 'meta: move one or more collaborators to emeritus' |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ on: | |
schedule: | ||
# 00:00:00 every Monday | ||
# https://crontab.guru/#0_0_*_*_1 | ||
- cron: "0 0 * * 1" | ||
- cron: 0 0 * * 1 | ||
workflow_dispatch: | ||
|
||
jobs: | ||
|
@@ -14,14 +14,14 @@ jobs: | |
- uses: actions/checkout@v2 | ||
with: | ||
persist-credentials: false | ||
- run: "./tools/license-builder.sh" # Run the license builder tool | ||
- run: ./tools/license-builder.sh # Run the license builder tool | ||
- uses: gr2m/[email protected] # Create a PR or update the Action's existing PR | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
author: Node.js GitHub Bot <[email protected]> | ||
branch: actions/license-builder | ||
title: "doc: run license-builder" | ||
title: 'doc: run license-builder' | ||
body: > | ||
License is likely out of date. This is an automatically generated PR by | ||
the `license-builder.yml` GitHub Action, which runs `license-builder.sh` | ||
|
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 |
---|---|---|
|
@@ -138,7 +138,7 @@ jobs: | |
persist-credentials: false | ||
- uses: mszostok/[email protected] | ||
with: | ||
checks: "files,duppatterns" | ||
checks: files,duppatterns | ||
lint-pr-url: | ||
if: ${{ github.event.pull_request }} | ||
runs-on: ubuntu-latest | ||
|
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 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 |
---|---|---|
|
@@ -2,7 +2,7 @@ name: Tools update | |
on: | ||
schedule: | ||
# Run once a week at 00:05 AM UTC on Saturday. | ||
- cron: '5 0 * * 6' | ||
- cron: 5 0 * * 6 | ||
|
||
workflow_dispatch: | ||
|
||
|
@@ -23,7 +23,7 @@ jobs: | |
echo "NEW_VERSION=$NEW_VERSION" >> $GITHUB_ENV | ||
./update-eslint.sh | ||
fi | ||
- id: "lint-md-dependencies" | ||
- id: lint-md-dependencies | ||
run: | | ||
cd tools/lint-md | ||
npm ci | ||
|
@@ -63,8 +63,8 @@ jobs: | |
GITHUB_TOKEN: ${{ secrets.GH_USER_TOKEN }} | ||
with: | ||
author: Node.js GitHub Bot <[email protected]> | ||
body: "This is an automated update of ${{ matrix.id }} to ${{ env.NEW_VERSION }}." | ||
branch: "actions/tools-update-${{ matrix.id }}" # Custom branch *just* for this Action. | ||
commit-message: "tools: update ${{ matrix.id }} to ${{ env.NEW_VERSION }}" | ||
body: This is an automated update of ${{ matrix.id }} to ${{ env.NEW_VERSION }}. | ||
branch: actions/tools-update-${{ matrix.id }} # Custom branch *just* for this Action. | ||
commit-message: 'tools: update ${{ matrix.id }} to ${{ env.NEW_VERSION }}' | ||
labels: tools | ||
title: "tools: update ${{ matrix.id }} to ${{ env.NEW_VERSION }}" | ||
title: 'tools: update ${{ matrix.id }} to ${{ env.NEW_VERSION }}' |
Oops, something went wrong.