Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/needs-sme-stale-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,8 @@ jobs:
with:
slack_channel_id: ${{ secrets.DOCS_ALERTS_SLACK_CHANNEL_ID }}
slack_token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }}

- uses: ./.github/actions/create-workflow-failure-issue
if: ${{ failure() }}
with:
token: ${{ secrets.DOCS_BOT_PAT_BASE }}
5 changes: 5 additions & 0 deletions .github/workflows/no-response.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,3 +63,8 @@ jobs:
with:
slack_channel_id: ${{ secrets.DOCS_ALERTS_SLACK_CHANNEL_ID }}
slack_token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }}

- uses: ./.github/actions/create-workflow-failure-issue
if: ${{ failure() }}
with:
token: ${{ secrets.DOCS_BOT_PAT_BASE }}
5 changes: 5 additions & 0 deletions .github/workflows/notify-about-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,8 @@ jobs:
with:
slack_channel_id: ${{ secrets.DOCS_ALERTS_SLACK_CHANNEL_ID }}
slack_token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }}

- uses: ./.github/actions/create-workflow-failure-issue
if: ${{ failure() }}
with:
token: ${{ secrets.DOCS_BOT_PAT_BASE }}
10 changes: 10 additions & 0 deletions .github/workflows/triage-stale-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ jobs:
slack_channel_id: ${{ secrets.DOCS_ALERTS_SLACK_CHANNEL_ID }}
slack_token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }}

- uses: ./.github/actions/create-workflow-failure-issue
if: ${{ failure() }}
with:
token: ${{ secrets.DOCS_BOT_PAT_BASE }}

stale_staff:
name: Remind staff about PRs waiting for review
if: github.repository == 'github/docs'
Expand Down Expand Up @@ -82,3 +87,8 @@ jobs:
with:
slack_channel_id: ${{ secrets.DOCS_ALERTS_SLACK_CHANNEL_ID }}
slack_token: ${{ secrets.SLACK_DOCS_BOT_TOKEN }}

- uses: ./.github/actions/create-workflow-failure-issue
if: ${{ failure() }}
with:
token: ${{ secrets.DOCS_BOT_PAT_BASE }}
2 changes: 0 additions & 2 deletions content/actions/concepts/runners/github-hosted-runners.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ contentType: concepts

## Overview of {% data variables.product.prodname_dotcom %}-hosted runners

{% data reusables.actions.enterprise-github-hosted-runners %}

Runners are the machines that execute jobs in a {% data variables.product.prodname_actions %} workflow. For example, a runner can clone your repository locally, install testing software, and then run commands that evaluate your code.

{% data variables.product.prodname_dotcom %} provides runners that you can use to run your jobs, or you can [host your own runners](/actions/hosting-your-own-runners/managing-self-hosted-runners/about-self-hosted-runners). {% data reusables.actions.single-cpu-runners %}
Expand Down
5 changes: 0 additions & 5 deletions eslint.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,6 @@ export default [
'src/article-api/transformers/audit-logs-transformer.ts',
'src/article-api/transformers/rest-transformer.ts',
'src/codeql-cli/scripts/convert-markdown-for-docs.ts',
'src/content-linter/lib/linting-rules/liquid-ifversion-versions.ts',
'src/content-linter/scripts/lint-content.ts',

'src/content-render/liquid/engine.ts',
Expand All @@ -260,7 +259,6 @@ export default [
'src/graphql/tests/validate-schema.ts',
'src/landings/components/CookBookFilter.tsx',
'src/landings/components/ProductGuidesContext.tsx',
'src/landings/components/ProductLandingContext.tsx',
'src/landings/components/SidebarProduct.tsx',
'src/landings/pages/home.tsx',
'src/landings/pages/product.tsx',
Expand All @@ -271,7 +269,6 @@ export default [
'src/links/scripts/check-github-github-links.ts',
'src/links/scripts/update-internal-links.ts',
'src/rest/components/get-rest-code-samples.ts',
'src/rest/lib/index.ts',
'src/rest/pages/category.tsx',
'src/rest/pages/subcategory.tsx',
'src/rest/scripts/utils/create-rest-examples.ts',
Expand Down Expand Up @@ -303,8 +300,6 @@ export default [
'src/types/github__markdownlint-github.d.ts',
'src/types/markdownlint-lib-rules.d.ts',
'src/types/markdownlint-rule-helpers.d.ts',
'src/types/markdownlint-rule-search-replace.d.ts',
'src/types/primer__octicons.d.ts',
],
rules: {
'@typescript-eslint/no-explicit-any': 'off',
Expand Down
Loading
Loading