Skip to content

Commit 4242165

Browse files
authored
Merge pull request #45341 from github/repo-sync
Repo sync
2 parents ee27de7 + a0ac750 commit 4242165

48 files changed

Lines changed: 536 additions & 320 deletions

File tree

Some content is hidden

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

.github/instructions/style-guide-summary.instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ For Liquid variable usage, reusables, linking conventions, bullet-list markers,
5959

6060
## Lists
6161

62-
* Capitalize the first letter of each list item.
62+
* Capitalize the first letter of each list item, including the first letter after the colon in a term definition list (for example, `* **Filesystem**: Grant read-only access...`).
6363
* Use periods only if the item is a complete sentence.
6464
* Introduce lists with a descriptive sentence, not vague phrases like "the following" in isolation.
6565

.github/workflows/docs-review-collect.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,8 @@ jobs:
2222
- name: Check out repo content
2323
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2424

25-
- name: Setup Node.js
26-
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
27-
with:
28-
node-version-file: 'package.json'
29-
cache: npm
30-
31-
- name: Install dependencies
32-
run: npm ci
25+
- name: Set up Node and dependencies
26+
uses: ./.github/actions/node-npm-setup
3327

3428
- name: Run script for audit-log-allowlists
3529
run: |

.github/workflows/link-check-external.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ jobs:
2929

3030
- uses: ./.github/actions/node-npm-setup
3131

32-
- name: Install dependencies
33-
run: npm ci
34-
3532
- name: Check external links
3633
id: check
3734
env:

.github/workflows/link-check-internal.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,6 @@ jobs:
8383
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
8484
- uses: ./.github/actions/node-npm-setup
8585

86-
- name: Install dependencies
87-
run: npm ci
88-
8986
# Clone translations if not English
9087
- name: Clone translations
9188
if: matrix.language != 'en'

.github/workflows/needs-sme-stale-check.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ jobs:
2020

2121
steps:
2222
- uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f # v10.0.0
23+
id: stale
2324
with:
2425
only-labels: needs SME
2526
days-before-stale: 28 # adds stale label if no activity for 7 days - temporarily changed to 28 days as we work through the backlog

.github/workflows/no-response.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
!endsWith(github.actor, '[bot]')
3535
steps:
3636
- uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f # v10.0.0
37+
id: stale
3738
with:
3839
repo-token: ${{ secrets.GITHUB_TOKEN }}
3940
only-labels: 'more-information-needed'

.github/workflows/os-ready-for-review.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -47,14 +47,8 @@ jobs:
4747
echo Aborting. This workflow must be triggered by a member of the docs team.
4848
exit 1
4949
50-
- name: Setup Node.js
51-
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
52-
with:
53-
node-version-file: 'package.json'
54-
cache: npm
55-
56-
- name: Install dependencies
57-
run: npm ci
50+
- name: Set up Node and dependencies
51+
uses: ./.github/actions/node-npm-setup
5852

5953
- name: Run script
6054
run: |

.github/workflows/stale.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f # v10.0.0
25+
id: stale
2526
with:
2627
repo-token: ${{ secrets.GITHUB_TOKEN }}
2728
stale-pr-message: "It looks as if this pull request has been inactive for 30 days. We want to check in with you to see if you plan to continue working on it. If you do, please add a comment to let us know. If we don't hear from you, we will close this pull request after 14 days. If the PR has been reviewed by a writer and you think it's ready to merge, drop into [#docs-content](https://github-grid.enterprise.slack.com/archives/C0E9DK082) and ask us to merge it."

.github/workflows/sync-sdk-docs.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,8 @@ jobs:
6464
echo "SDK_TMP=$tmp" >> "$GITHUB_ENV"
6565
echo "Fetched copilot-sdk@${SDK_SHA::7}"
6666
67-
- name: Setup Node.js
68-
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
69-
with:
70-
node-version: 22
71-
cache: npm
72-
73-
- name: Install dependencies
74-
run: npm ci
67+
- name: Set up Node and dependencies
68+
uses: ./.github/actions/node-npm-setup
7569

7670
- name: Install mermaid-cli
7771
run: npm install -g @mermaid-js/mermaid-cli@11

.github/workflows/sync-secret-scanning.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070

7171
- if: ${{ steps.create-pull-request.outputs.pull-request-number }}
7272
name: Approve
73-
uses: juliangruber/approve-pull-request-action@dcc4effb325c0b503408619918d56e40653dcc91
73+
uses: juliangruber/approve-pull-request-action@68fcc9a5a73b5641cadf757cf99d73720dcb05d0 # v2.1.0
7474
with:
7575
github-token: ${{ secrets.GITHUB_TOKEN }}
7676
number: ${{ steps.create-pull-request.outputs.pull-request-number }}

0 commit comments

Comments
 (0)