Skip to content

Commit 55c15fb

Browse files
heiskrCopilot
andauthored
Point docs-engineering references to technical-content (#62866)
Co-authored-by: heiskr <1221423+heiskr@users.noreply.github.com> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: d3eeb6ae-47df-4769-a199-cadd3848415d
1 parent c448e8d commit 55c15fb

33 files changed

Lines changed: 61 additions & 61 deletions

.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# This file is a template for what your untracked .env file might look like for local development.
22
# Please copy this to a new .env file and fill in the values as needed.
33

4-
# Requires a running local Elasticsearch service. Can be started via Docker, see https://github.com/github/docs-engineering/blob/main/docs/elasticsearch/elasticsearch-locally.md
4+
# Requires a running local Elasticsearch service. Can be started via Docker, see https://github.com/github/technical-content/blob/main/engineering/search/elasticsearch-locally.md
55
# When this value is unset searches will be proxied to the production Elasticsearch endpoint
66
ELASTICSEARCH_URL=http://localhost:9200
77

8-
# Set for sending events in local development. See https://github.com/github/docs-engineering/blob/main/docs/analytics/hydro-mock.md
8+
# Set for sending events in local development. See https://github.com/github/technical-content/blob/main/analytics/hydro-mock.md
99
HYDRO_ENDPOINT=
1010
HYDRO_SECRET=
1111

.github/actions/create-workflow-failure-issue/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
name: Create workflow failure issue
2-
description: Create or update a GitHub issue in docs-engineering when a workflow fails, for automated diagnosis by an agentic workflow.
2+
description: Create or update a GitHub issue in technical-content when a workflow fails, for automated diagnosis by an agentic workflow.
33

44
inputs:
55
token:
66
description: A token with issues write permission on the target repo
77
required: true
88
repo:
99
description: The repository to create the issue in
10-
default: github/docs-engineering
10+
default: github/technical-content
1111
required: false
1212

1313
outputs:

.github/workflows/benchmark-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
env:
2020
BENCHMARK_LABEL: benchmark-regression
21-
ISSUE_REPO: github/docs-engineering
21+
ISSUE_REPO: github/technical-content
2222
steps:
2323
- name: Checkout
2424
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0

.github/workflows/enterprise-dates.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
body:
4747
"Hello! The GitHub Enterprise Server release dates have changed.\n\n
4848
If CI passes, this PR will be auto-merged. :green_heart:\n\n
49-
If CI does not pass or other problems arise, contact #docs-engineering on slack.\n\nThis PR was 🤖-crafted by `.github/workflows/enterprise-dates.yml`. 🧶"
49+
If CI does not pass or other problems arise, contact #technical-content on slack.\n\nThis PR was 🤖-crafted by `.github/workflows/enterprise-dates.yml`. 🧶"
5050
branch: enterprise-server-dates-update
5151
delete-branch: true
5252

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ jobs:
260260
--body '👋 humans. This PR updates the **CodeQL query table reusables** with the latest changes in preparation for the next **CodeQL CLI** release. (Synced from codeql@${{ steps.codeql.outputs.OPENAPI_COMMIT_SHA }})
261261
262262
263-
No action is required from the first responder for the Docs content team. This PR is automatically added to the Docs content review board. Any writer can review this by checking that the PR looks sensible. If CI does not pass or other problems arise, contact #docs-engineering on slack.
263+
No action is required from the first responder for the Docs content team. This PR is automatically added to the Docs content review board. Any writer can review this by checking that the PR looks sensible. If CI does not pass or other problems arise, contact #technical-content on slack.
264264
265265
266266
When the DRI for the CodeQL CLI release is ready to publish, they will ask us to merge this PR in #docs-content.

.github/workflows/index-general-search.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ jobs:
305305
# Reuse the oldest open scraping-failures issue if one exists,
306306
# to keep the noise down. Otherwise open a new one.
307307
existing_issue=$(gh issue list \
308-
--repo github/docs-engineering \
308+
--repo github/technical-content \
309309
--label "search-scraping-failures" \
310310
--state open \
311311
--limit 200 \
@@ -324,7 +324,7 @@ jobs:
324324
EOF
325325
)
326326
gh issue comment "$existing_issue" \
327-
--repo github/docs-engineering \
327+
--repo github/technical-content \
328328
--body "$comment_body"
329329
exit 0
330330
fi
@@ -344,7 +344,7 @@ jobs:
344344
EOF
345345
)
346346
gh issue create \
347-
--repo github/docs-engineering \
347+
--repo github/technical-content \
348348
--label "search-scraping-failures" \
349349
--title "[Search Scraping Failures] $today" \
350350
--body "$body"

.github/workflows/orphaned-features-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
The first responder should just spot-check some of the orphans
9090
to make sure they aren't referenced anywhere
9191
and then approve and merge the pull request.
92-
For more information, see [Doc: Orphaned Features](https://github.com/github/docs-engineering/blob/main/docs/orphaned-features.md).
92+
For more information, see [Doc: Orphaned Features](https://github.com/github/technical-content/blob/main/engineering/orphaned-features.md).
9393
9494
Generated by the [orphaned features workflow run]($GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID).
9595
EOM

.github/workflows/orphaned-files-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
103103
If you are the first responder, please spot check some of the unused assets, reusables, and tables to make sure they aren't referenced anywhere. Then, approve and merge the pull request.
104104
105-
For more information, see [Doc: Orphaned Assets](https://github.com/github/docs-engineering/blob/main/docs/orphaned-assets.md) and [Doc: Reusables CLI](https://github.com/github/docs-internal/tree/main/src/content-render/scripts/reusables-cli).
105+
For more information, see [Doc: Orphaned Assets](https://github.com/github/technical-content/blob/main/engineering/orphaned-assets.md) and [Doc: Reusables CLI](https://github.com/github/docs-internal/tree/main/src/content-render/scripts/reusables-cli).
106106
107107
Generated by the [orphaned files workflow run]($GITHUB_SERVER_URL/$GITHUB_REPOSITORY/actions/runs/$GITHUB_RUN_ID).
108108
EOM

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
--title "Update audit log event data" \
8989
--body '👋 Docs First Responder. This PR updates the audit log event data with the latest changes, synced from github/audit-log-allowlists.
9090
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).
91-
If CI does not pass or other problems arise, contact #docs-engineering on slack.' \
91+
If CI does not pass or other problems arise, contact #technical-content on slack.' \
9292
--repo github/docs-internal \
9393
--label audit-log-pipeline,workflow-generated \
9494
--head=$branchname

.github/workflows/sync-codeql-cli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
113113
This will be reviewed and merged by the Code scanning and GHAS focus team as part of the release of CodeQL CLI. (Synced from semmle-code@${{ steps.semmle-code.outputs.OPENAPI_COMMIT_SHA }})
114114
115-
If CI does not pass or other problems arise, contact #docs-engineering on slack.' \
115+
If CI does not pass or other problems arise, contact #technical-content on slack.' \
116116
--repo github/docs-internal \
117117
--label "codeql-cli-pipeline,skip FR board,ready-for-doc-review,workflow-generated"
118118

0 commit comments

Comments
 (0)