Skip to content

Commit 70aa62e

Browse files
authored
Merge pull request #44055 from github/repo-sync
Repo sync
2 parents 62f5374 + 58d68fc commit 70aa62e

23 files changed

Lines changed: 574 additions & 211 deletions

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,8 @@ jobs:
4141
with:
4242
slack_channel_id: ${{ secrets.DOCS_ALERTS_SLACK_CHANNEL_ID }}
4343
slack_token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }}
44+
45+
- uses: ./.github/actions/create-workflow-failure-issue
46+
if: ${{ failure() }}
47+
with:
48+
token: ${{ secrets.DOCS_BOT_PAT_BASE }}

.github/workflows/no-response.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,8 @@ jobs:
6363
with:
6464
slack_channel_id: ${{ secrets.DOCS_ALERTS_SLACK_CHANNEL_ID }}
6565
slack_token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }}
66+
67+
- uses: ./.github/actions/create-workflow-failure-issue
68+
if: ${{ failure() }}
69+
with:
70+
token: ${{ secrets.DOCS_BOT_PAT_BASE }}

.github/workflows/notify-about-deployment.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,3 +75,8 @@ jobs:
7575
with:
7676
slack_channel_id: ${{ secrets.DOCS_ALERTS_SLACK_CHANNEL_ID }}
7777
slack_token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }}
78+
79+
- uses: ./.github/actions/create-workflow-failure-issue
80+
if: ${{ failure() }}
81+
with:
82+
token: ${{ secrets.DOCS_BOT_PAT_BASE }}

.github/workflows/triage-stale-check.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@ jobs:
5252
slack_channel_id: ${{ secrets.DOCS_ALERTS_SLACK_CHANNEL_ID }}
5353
slack_token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }}
5454

55+
- uses: ./.github/actions/create-workflow-failure-issue
56+
if: ${{ failure() }}
57+
with:
58+
token: ${{ secrets.DOCS_BOT_PAT_BASE }}
59+
5560
stale_staff:
5661
name: Remind staff about PRs waiting for review
5762
if: github.repository == 'github/docs'
@@ -82,3 +87,8 @@ jobs:
8287
with:
8388
slack_channel_id: ${{ secrets.DOCS_ALERTS_SLACK_CHANNEL_ID }}
8489
slack_token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }}
90+
91+
- uses: ./.github/actions/create-workflow-failure-issue
92+
if: ${{ failure() }}
93+
with:
94+
token: ${{ secrets.DOCS_BOT_PAT_BASE }}

eslint.config.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,6 @@ export default [
234234
'src/article-api/transformers/audit-logs-transformer.ts',
235235
'src/article-api/transformers/rest-transformer.ts',
236236
'src/codeql-cli/scripts/convert-markdown-for-docs.ts',
237-
'src/content-linter/lib/linting-rules/liquid-ifversion-versions.ts',
238237
'src/content-linter/scripts/lint-content.ts',
239238

240239
'src/content-render/liquid/engine.ts',
@@ -260,7 +259,6 @@ export default [
260259
'src/graphql/tests/validate-schema.ts',
261260
'src/landings/components/CookBookFilter.tsx',
262261
'src/landings/components/ProductGuidesContext.tsx',
263-
'src/landings/components/ProductLandingContext.tsx',
264262
'src/landings/components/SidebarProduct.tsx',
265263
'src/landings/pages/home.tsx',
266264
'src/landings/pages/product.tsx',
@@ -271,7 +269,6 @@ export default [
271269
'src/links/scripts/check-github-github-links.ts',
272270
'src/links/scripts/update-internal-links.ts',
273271
'src/rest/components/get-rest-code-samples.ts',
274-
'src/rest/lib/index.ts',
275272
'src/rest/pages/category.tsx',
276273
'src/rest/pages/subcategory.tsx',
277274
'src/rest/scripts/utils/create-rest-examples.ts',
@@ -303,8 +300,6 @@ export default [
303300
'src/types/github__markdownlint-github.d.ts',
304301
'src/types/markdownlint-lib-rules.d.ts',
305302
'src/types/markdownlint-rule-helpers.d.ts',
306-
'src/types/markdownlint-rule-search-replace.d.ts',
307-
'src/types/primer__octicons.d.ts',
308303
],
309304
rules: {
310305
'@typescript-eslint/no-explicit-any': 'off',

0 commit comments

Comments
 (0)