Skip to content

Commit 8b9a4c9

Browse files
jsundaiCopilot
andauthored
move files under readme/ (#5035)
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
1 parent e9cc623 commit 8b9a4c9

22 files changed

Lines changed: 39 additions & 39 deletions

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
blank_issues_enabled: false
22
contact_links:
3-
- "https://github.com/temporalio/documentation/blob/main/CONTACT.md"
3+
- "https://github.com/temporalio/documentation/blob/main/readme/CONTACT.md"
44
templates:
55
- name: "Typos and Grammar"
66
description: "Report typos, spelling mistakes, or grammar problems."

.github/workflows/check-orphan-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
102102
const report = fs.readFileSync('report.txt', 'utf8');
103103
const body = hasFindings
104-
? `${marker}\n### ⚠️ Orphan pages check\n\nThis is informational and does not block merging.\n\n\`\`\`\n${report}\n\`\`\`\n\nSee [UTILITIES.md](https://github.com/${context.repo.owner}/${context.repo.repo}/blob/main/UTILITIES.md#check-orphan-pages) for what to do next.`
104+
? `${marker}\n### ⚠️ Orphan pages check\n\nThis is informational and does not block merging.\n\n\`\`\`\n${report}\n\`\`\`\n\nSee [UTILITIES.md](https://github.com/${context.repo.owner}/${context.repo.repo}/blob/main/readme/UTILITIES.md#check-orphan-pages) for what to do next.`
105105
: `${marker}\n### ✅ Orphan pages check\n\nNo orphaned pages found.`;
106106
107107
if (existing) {

AGENTS.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ repository.
77

88
| Topic | File |
99
| ---------------------------- | ------------------------------------------------------------ |
10-
| Where content belongs | [INFORMATION-ARCHITECTURE.md](./INFORMATION-ARCHITECTURE.md) |
11-
| React components in MDX | [COMPONENTS.md](./COMPONENTS.md) |
12-
| Mermaid diagrams | [MERMAID.md](./readme/MERMAID.md) |
13-
| LLM Markdown pipeline | [MARKDOWN_PIPELINE.md](./MARKDOWN_PIPELINE.md) |
14-
| Component → Markdown mapping | [COMPONENT_REGISTRY.md](./COMPONENT_REGISTRY.md) |
15-
| CI jobs and scheduled jobs | [AUTOMATIONS.md](./AUTOMATIONS.md) |
10+
| Where content belongs | [INFORMATION-ARCHITECTURE.md](./readme/INFORMATION-ARCHITECTURE.md) |
11+
| React components in MDX | [COMPONENTS.md](./readme/COMPONENTS.md) |
12+
| Mermaid diagrams | [MERMAID.md](./readme/MERMAID.md) |
13+
| LLM Markdown pipeline | [MARKDOWN_PIPELINE.md](./readme/MARKDOWN_PIPELINE.md) |
14+
| Component → Markdown mapping | [COMPONENT_REGISTRY.md](./readme/COMPONENT_REGISTRY.md) |
15+
| CI jobs and scheduled jobs | [AUTOMATIONS.md](./AUTOMATIONS.md) |
1616

1717
## Repository overview
1818

@@ -23,11 +23,11 @@ repository.
2323

2424
## Where to put content
2525

26-
Use [INFORMATION-ARCHITECTURE.md](./INFORMATION-ARCHITECTURE.md) to choose the section.
26+
Use [INFORMATION-ARCHITECTURE.md](./readme/INFORMATION-ARCHITECTURE.md) to choose the section.
2727

2828
## Style Guide
2929

30-
Follow [STYLE.md](./STYLE.md) and Vale rules in `vale/styles/`. The most common mistakes:
30+
Follow [STYLE.md](./readme/STYLE.md) and Vale rules in `vale/styles/`. The most common mistakes:
3131

3232
### Temporal terms are proper nouns
3333

@@ -64,7 +64,7 @@ In code blocks, follow each language's conventions.
6464

6565
### Writing style
6666

67-
Follow [STYLE.md](./STYLE.md) and the [Google developer documentation style guide](https://developers.google.com/style)
67+
Follow [STYLE.md](./readme/STYLE.md) and the [Google developer documentation style guide](https://developers.google.com/style)
6868
for tone (conversational, second person, active voice) and structure (short paragraphs, one idea per sentence). A few
6969
additions specific to model output:
7070

@@ -121,8 +121,8 @@ tags:
121121
- Pages are `.mdx` with YAML frontmatter (see [Frontmatter](#frontmatter) above).
122122
- Import shared components from `@site/src/components` unless a page uses a one-off import path already established
123123
nearby.
124-
- Before adding a component, check [COMPONENTS.md](./COMPONENTS.md) and
125-
[COMPONENT_REGISTRY.md](./COMPONENT_REGISTRY.md).
124+
- Before adding a component, check [COMPONENTS.md](./readme/COMPONENTS.md) and
125+
[COMPONENT_REGISTRY.md](./readme/COMPONENT_REGISTRY.md).
126126
- Reuse existing components (`Tabs`, `SdkTabs`, `CaptionedImage`, `ViewSourceCodeNotice`, etc.) instead of inventing
127127
inline HTML patterns.
128128
- Interactive demos live in `src/components/elements/`. Export new public components from `src/components/index.js` when
@@ -168,8 +168,8 @@ record it in `bin/metrics-baseline.json` rather than suppressing the check.
168168
`yarn check:orphans` reports pages that will build and get a real URL but aren't reachable from `sidebars.js`. A page
169169
that should stay linkable without navigation belongs in frontmatter as `unlisted: true`, not `draft: true` (draft pages
170170
don't build in production at all, which 404s any inbound links). A page that's a known, accepted exception for now
171-
belongs in `bin/orphan-pages-baseline.json` with a note, rather than being silently ignored. See `UTILITIES.md` for
172-
details.
171+
belongs in `bin/orphan-pages-baseline.json` with a note, rather than being silently ignored. See
172+
[UTILITIES.md](./readme/UTILITIES.md) for details.
173173

174174
Vale linting (style):
175175

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ This repository contains a large chunk of the Temporal information corpus.
88

99
| Resource | Audience |
1010
|--------------------------------------------|--------------------------|
11-
| [Information architecture](./INFORMATION-ARCHITECTURE.md) | For contributors and maintainers |
12-
| [Contact information](./CONTACT.md) | For our open source community |
13-
| [Contributing guidance](./CONTRIBUTING.md) | For our open source community |
11+
| [Information architecture](./readme/INFORMATION-ARCHITECTURE.md) | For contributors and maintainers |
12+
| [Contact information](./readme/CONTACT.md) | For our open source community |
13+
| [Contributing guidance](./readme/CONTRIBUTING.md) | For our open source community |
1414
| [License](./LICENSE.md) | For our open source community |
15-
| [React Component catalog and guidance](./COMPONENTS.md) | For our open source community |
16-
| [Readability tooling guidance](./READABILITY.md) | For repo maintainers |
17-
| [Style guidance](./STYLE.md) | For our open source community |
18-
| [Utility tooling guidance](./UTILITIES.md) | For repo maintainers |
15+
| [React Component catalog and guidance](./readme/COMPONENTS.md) | For our open source community |
16+
| [Readability tooling guidance](./readme/READABILITY.md) | For repo maintainers |
17+
| [Style guidance](./readme/STYLE.md) | For our open source community |
18+
| [Utility tooling guidance](./readme/UTILITIES.md) | For repo maintainers |
1919

2020
### Current component versioning philosophy
2121

plugins/markdown-pages/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ module.exports = function markdownPagesPlugin(context, options = {}) {
330330
async postBuild({ outDir }) {
331331
// The transformer is ESM (zero-dep, also unit-tested standalone); this
332332
// plugin is CommonJS, so load it via dynamic import. See
333-
// scripts/mdx-to-md.mjs and MARKDOWN_PIPELINE.md.
333+
// scripts/mdx-to-md.mjs and readme/MARKDOWN_PIPELINE.md.
334334
const { pathToFileURL } = require('url');
335335
const { transformMdx } = await import(
336336
pathToFileURL(path.join(__dirname, '../../scripts/mdx-to-md.mjs')).href

COMPONENTS.md renamed to readme/COMPONENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ Role: To provide a consistent component for adding, updating, and removing relea
500500
501501
Usage:
502502
503-
In `/src/constants`, update the [`featureReleaseTypes.js`](./src/constants/featureReleaseTypes.js) file to include the release stage for the feature you want.
503+
In `/src/constants`, update the [`featureReleaseTypes.js`](../src/constants/featureReleaseTypes.js) file to include the release stage for the feature you want.
504504
505505
Example: `serverlessWorkers: "prerelease"`
506506
File renamed without changes.

CONTACT.md renamed to readme/CONTACT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ We’re always happy to help and look forward to hearing from you!
2323
We believe strongly in Open Source and encourage contributions to our documentation. If you’d like to contribute or help us improve, these links may help:
2424

2525
- **About the docs**: Learn more about the documentation structure and how we maintain it by visiting the [documentation overview](https://github.com/temporalio/documentation/blob/main/README.md).
26-
- **Contributing**: Check out our [Contributing Guidelines](https://github.com/temporalio/documentation/blob/main/CONTRIBUTING.md) for how to get started with contributing to the Temporal documentation or codebase.
26+
- **Contributing**: Check out our [Contributing Guidelines](https://github.com/temporalio/documentation/blob/main/readme/CONTRIBUTING.md) for how to get started with contributing to the Temporal documentation or codebase.
2727
- **We’re Hiring**: Interested in joining the Temporal team? We’re always looking for passionate individuals. Explore open positions at [Temporal Careers](https://temporal.io/careers).
2828

2929
---

CONTRIBUTING.md renamed to readme/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ Maintainers and contributors to this project are expected to conduct themselves
7979

8080
This repository and its contents are open-source; individual and commercial use are permitted.
8181

82-
[MIT License](./LICENSE.md)
82+
[MIT License](../LICENSE.md)
8383

8484

8585
# File a Github Issue
File renamed without changes.

0 commit comments

Comments
 (0)