Skip to content

Commit 5facf01

Browse files
authored
Merge pull request github#36419 from github/repo-sync
Repo sync
2 parents 475cfd8 + eefdac8 commit 5facf01

File tree

12 files changed

+31
-13
lines changed

12 files changed

+31
-13
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
name:
4141
# src/ directory
4242
- archives
43+
- article-api
4344
- assets
4445
- audit-logs
4546
- automated-pipelines
@@ -66,7 +67,6 @@ jobs:
6667
- observability
6768
# - open-source
6869
- pageinfo
69-
- pagelist
7070
# - pages
7171
- products
7272
- redirects

Dockerfile

+1-1
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:20250131-172559-g0fd5a2edc AS base
11+
FROM ghcr.io/github/gh-base-image/gh-base-noble:20250218-181933-g3ea4154ca 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

content/copilot/rolling-out-github-copilot-at-scale/reminding-inactive-users.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ To use this workflow:
7979
1. Using the example below, create the workflow in the repository where you want the reminder issues to be created.
8080

8181
If you're new to {% data variables.product.prodname_actions %}, see [AUTOTITLE](/actions/writing-workflows/quickstart).
82-
1. If you want to create the issues in a repository other than the one in which the workflow is located, replace `${{ github.repository }}` in the `gh` commands with the name of the repository where you want the reminder issues to be created. For example: `octo-org/octo-repo`.
82+
1. If you want to create the issues in a repository other than the one in which the workflow is located, replace `{% raw %}${{ github.repository }}{% endraw %}` in the `gh` commands with the name of the repository where you want the reminder issues to be created. For example: `octo-org/octo-repo`.
8383

8484
### Example workflow
8585

@@ -149,7 +149,7 @@ jobs:
149149
150150
# Set the GH_TOKEN, required for the 'gh issue' commands
151151
env:
152-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
152+
GH_TOKEN: {% raw %}${{ secrets.GITHUB_TOKEN }}{% endraw %}
153153
```
154154
155155
<!-- markdownlint-enable GHD021 -->

src/article-api/README.md

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Article API
2+
3+
This subject folder contains the code for the Article API endpoints:
4+
- `/api/pagelist`
5+
- `/api/article/body`
6+
- `/api/article/meta`
7+
8+
## What it does
9+
10+
Article API endpoints allow consumers to query GitHub Docs for listings of current articles, and for specific article information.
File renamed without changes.
File renamed without changes.

src/audit-logs/data/fpt/organization.json

+5
Original file line numberDiff line numberDiff line change
@@ -3119,6 +3119,11 @@
31193119
"description": "A secret scanning alert was validated.",
31203120
"docs_reference_links": "/code-security/secret-scanning/managing-alerts-from-secret-scanning"
31213121
},
3122+
{
3123+
"action": "secret_scanning_closure_request.approve",
3124+
"description": "A request to close a secret scanning alert was approved by a user.",
3125+
"docs_reference_links": "N/A"
3126+
},
31223127
{
31233128
"action": "secret_scanning_closure_request.create",
31243129
"description": "N/A",

src/audit-logs/data/ghec/enterprise.json

+5
Original file line numberDiff line numberDiff line change
@@ -3909,6 +3909,11 @@
39093909
"description": "A secret scanning alert was validated.",
39103910
"docs_reference_links": "/code-security/secret-scanning/managing-alerts-from-secret-scanning"
39113911
},
3912+
{
3913+
"action": "secret_scanning_closure_request.approve",
3914+
"description": "A request to close a secret scanning alert was approved by a user.",
3915+
"docs_reference_links": "N/A"
3916+
},
39123917
{
39133918
"action": "secret_scanning_closure_request.create",
39143919
"description": "N/A",

src/audit-logs/data/ghec/organization.json

+5
Original file line numberDiff line numberDiff line change
@@ -3119,6 +3119,11 @@
31193119
"description": "A secret scanning alert was validated.",
31203120
"docs_reference_links": "/code-security/secret-scanning/managing-alerts-from-secret-scanning"
31213121
},
3122+
{
3123+
"action": "secret_scanning_closure_request.approve",
3124+
"description": "A request to close a secret scanning alert was approved by a user.",
3125+
"docs_reference_links": "N/A"
3126+
},
31223127
{
31233128
"action": "secret_scanning_closure_request.create",
31243129
"description": "N/A",

src/audit-logs/lib/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"apiOnlyEvents": "This event is not available in the web interface, only via the REST API, audit log streaming, or JSON/CSV exports.",
44
"apiRequestEvent": "This event is only available via audit log streaming."
55
},
6-
"sha": "8d3976430d6752ebd2a4a4b62570c7381982dc24"
6+
"sha": "22d7bd6f4683db4821760803f4909f665e9cbcfb"
77
}

src/frame/middleware/api.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import anchorRedirect from '@/rest/api/anchor-redirect.js'
66
import aiSearch from '@/search/middleware/ai-search'
77
import search from '@/search/middleware/search-routes.js'
88
import pageInfo from '@/pageinfo/middleware'
9-
import pageList from '@/pagelist/middleware'
9+
import pageList from '@/article-api/middleware/pagelist'
1010
import webhooks from '@/webhooks/middleware/webhooks.js'
1111
import { ExtendedRequest } from '@/types'
1212
import { noCacheControl } from './cache-control'

src/pagelist/README.md

-7
This file was deleted.

0 commit comments

Comments
 (0)