Skip to content

Commit 38dd227

Browse files
Merge branch 'main' into fix-enterprise-autotitle-links
2 parents 4ac89f8 + e052de8 commit 38dd227

File tree

170 files changed

+20041
-2413
lines changed

Some content is hidden

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

170 files changed

+20041
-2413
lines changed

.github/workflows/first-responder-v2-prs-collect.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ jobs:
2323
runs-on: ubuntu-latest
2424

2525
steps:
26+
- name: Checkout repository
27+
uses: actions/checkout@v3
28+
2629
- name: Check if the event originated from a team member
2730
uses: actions/github-script@e69ef5462fd455e02edcaf4dd7708eda96b9eda0
2831
id: check-membership

.github/workflows/generate-code-scanning-query-lists.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
8888
- name: Build code scanning query list
8989
run: |
90-
for lang in "actions" "cpp" "csharp" "go" "java" "javascript" "python" "ruby" "swift"; do
90+
for lang in "actions" "cpp" "csharp" "go" "java" "javascript" "python" "ruby" "rust" "swift"; do
9191
echo "Generating code scanning query list for $lang"
9292
npm run generate-code-scanning-query-list -- \
9393
--verbose \

.github/workflows/reviewers-content-systems.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ name: Reviewers - Content Systems
66

77
on:
88
pull_request:
9+
types:
10+
- edited
11+
- opened
12+
- ready_for_review
13+
- reopened
14+
- synchronize
915
paths:
1016
- 'contributing/content-*.md'
1117
- 'content/contributing/**.md'
@@ -29,7 +35,9 @@ jobs:
2935
GH_TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }}
3036

3137
steps:
38+
- name: Checkout repository
39+
uses: actions/checkout@v4
40+
3241
- name: Add content systems as a reviewer
3342
run: |
34-
gh pr edit $PR --add-reviewer github/docs-content-systems
35-
gh pr edit $PR --add-label reviewers-content-systems
43+
gh pr edit $PR --add-reviewer github/docs-content-systems --add-label reviewers-content-systems

.github/workflows/reviewers-dependabot.yml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ name: Reviewers - Dependabot
66

77
on:
88
pull_request:
9+
types:
10+
- edited
11+
- opened
12+
- ready_for_review
13+
- reopened
14+
- synchronize
915
paths:
1016
- 'data/reusable/dependabot/**'
1117
- 'content/code-security/dependabot/**'
@@ -18,19 +24,21 @@ permissions:
1824
repository-projects: read
1925

2026
jobs:
21-
add-reviewer:
27+
reviewers-dependabot:
2228
if: >-
2329
${{ github.repository == 'github/docs-internal' &&
2430
!github.event.pull_request.draft &&
2531
!contains(github.event.pull_request.labels.*.name, 'reviewers-dependabot') &&
2632
github.event.pull_request.head.ref != 'repo-sync' }}
2733
runs-on: ubuntu-latest
2834
env:
29-
GH_TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }}
3035
PR: ${{ github.event.pull_request.html_url }}
36+
GH_TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }}
3137

3238
steps:
33-
- name: Add Dependabot Core Maintainers as reviewers
39+
- name: Checkout repository
40+
uses: actions/checkout@v4
41+
42+
- name: Add dependabot as a reviewer
3443
run: |
35-
gh pr edit $PR --add-reviewer github/dependabot-updates-reviewers
36-
gh pr edit $PR --add-label reviewers-dependabot
44+
gh pr edit $PR --add-reviewer github/dependabot-updates-reviewers --add-label reviewers-dependabot

.github/workflows/reviewers-docs-engineering.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ permissions:
3535
repository-projects: read
3636

3737
jobs:
38-
codeowners-docs-engineering:
38+
reviewers-docs-engineering:
3939
if: >-
4040
${{ github.repository == 'github/docs-internal' &&
4141
!github.event.pull_request.draft &&
@@ -47,7 +47,9 @@ jobs:
4747
GH_TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }}
4848

4949
steps:
50+
- name: Checkout repository
51+
uses: actions/checkout@v4
52+
5053
- name: Add docs engineering as a reviewer
5154
run: |
52-
gh pr edit $PR --add-reviewer github/docs-engineering
53-
gh pr edit $PR --add-label reviewers-docs-engineering
55+
gh pr edit $PR --add-reviewer github/docs-engineering --add-label reviewers-docs-engineering

.github/workflows/reviewers-legal.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ permissions:
2323
repository-projects: read
2424

2525
jobs:
26-
codeowners-legal:
26+
reviewers-legal:
2727
if: >-
2828
${{ github.repository == 'github/docs-internal' &&
2929
!github.event.pull_request.draft &&
3030
!contains(github.event.pull_request.labels.*.name, 'reviewers-legal') &&
3131
github.event.pull_request.head.ref != 'repo-sync' }}
3232
runs-on: ubuntu-latest
3333
steps:
34-
- name: Check out repo
35-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
34+
- name: Checkout repository
35+
uses: actions/checkout@v4
3636

3737
- name: Get changed files
3838
id: changed_files
@@ -52,11 +52,10 @@ jobs:
5252
CHANGED_FILE_PATHS: ${{ steps.changed_files.outputs.filtered_changed_files }}
5353
CONTENT_TYPE: 'rai'
5454

55-
- name: Check for reviewers-legal label, add if missing and request review
55+
- name: Add legal as a reviewer
5656
if: steps.checkContentType.outputs.containsContentType == 'true'
5757
env:
5858
GH_TOKEN: ${{ secrets.DOCS_BOT_PAT_BASE }}
5959
PR: ${{ github.event.pull_request.html_url }}
6060
run: |
61-
gh pr edit $PR --add-reviewer github/legal-product
62-
gh pr edit $PR --add-label reviewers-legal
61+
gh pr edit $PR --add-reviewer github/legal-product --add-label reviewers-legal

.github/workflows/sync-audit-logs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ jobs:
8787
echo "Creating pull request..."
8888
gh pr create \
8989
--title "Update audit log event data" \
90-
--body '👋 humans. This PR updates the audit log event data with the latest changes. (Synced from github/audit-log-allowlists)
91-
90+
--body '👋 Docs First Responder. This PR updates the audit log event data with the latest changes, synced from github/audit-log-allowlists.
91+
Make sure the PR builds successfully and there are no gross errors (for example, a file is deleted). You do not need to validate the contents (that is the responsibility of product teams).
9292
If CI does not pass or other problems arise, contact #docs-engineering on slack.' \
9393
--repo github/docs-internal \
9494
--label audit-log-pipeline \

.github/workflows/sync-openapi.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,8 @@ jobs:
110110
--title "Update OpenAPI Description" \
111111
--body '👋 humans. This PR updates the OpenAPI description with the latest changes. (Synced from github/rest-api-description@${{ steps.rest-api-description.outputs.OPENAPI_COMMIT_SHA }})
112112
113+
Docs First Responders should follow [the acting-as-the-first-responder instructions](https://github.com/github/docs-team/blob/main/contributing-to-docs/first-responder/acting-as-the-first-responder.md?plain=1#L156).
114+
113115
If CI does not pass or other problems arise, contact #docs-engineering on slack.' \
114116
--repo github/docs-internal \
115117
--label github-openapi-bot \

.vscode/settings.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# ---------------------------------------------------------------
99
# To update the sha:
1010
# https://github.com/github/gh-base-image/pkgs/container/gh-base-image%2Fgh-base-noble
11-
FROM ghcr.io/github/gh-base-image/gh-base-noble:20250529-200944-g9be5a274f AS base
11+
FROM ghcr.io/github/gh-base-image/gh-base-noble:20250616-220726-g8823b63b3 AS base
1212

1313
# Install curl for Node install and determining the early access branch
1414
# Install git for cloning docs-early-access & translations repos

0 commit comments

Comments
 (0)