Skip to content

Commit 25a2a39

Browse files
authored
Merge pull request #78 from objectstack-ai/copilot/fix-link-check-ci
2 parents b389a51 + 8c9bfaa commit 25a2a39

File tree

9 files changed

+14
-10
lines changed

9 files changed

+14
-10
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ coverage/
3030
yarn-debug.log*
3131
yarn-error.log*
3232

33+
# Lychee link checker cache
34+
.lycheecache
35+
3336
# Testing
3437
coverage/
3538

content/blog/metadata-driven-architecture.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -584,4 +584,4 @@ ObjectStack is our answer.
584584

585585
---
586586

587-
*Want to dive deeper? Explore our [technical specifications](/docs/specifications) or join the discussion on [GitHub](https://github.com/objectstack-ai/spec/discussions).*
587+
*Want to dive deeper? Explore our [technical specifications](/docs/specifications) or join the discussion on [GitHub](https://github.com/objectstack-ai/spec/issues).*

content/blog/protocol-first-development.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -849,4 +849,4 @@ Join us in building it.
849849

850850
---
851851

852-
*Ready to build on ObjectStack? Check out our [Getting Started Guide](/docs/guides/getting-started) or join the conversation on [GitHub Discussions](https://github.com/objectstack-ai/spec/discussions).*
852+
*Ready to build on ObjectStack? Check out our [Getting Started Guide](/docs/guides/getting-started) or join the conversation on [GitHub Issues](https://github.com/objectstack-ai/spec/issues).*

content/docs/faq.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,6 @@ Field.lookup({
307307
## Still Have Questions?
308308

309309
- 📖 Check the [Guides](/docs/guides/getting-started)
310-
- 💬 Ask in [GitHub Discussions](https://github.com/objectstack-ai/spec/discussions)
310+
- 💬 Ask in [GitHub Issues](https://github.com/objectstack-ai/spec/issues)
311311
- 🐛 Report bugs in [GitHub Issues](https://github.com/objectstack-ai/spec/issues)
312312
- 📧 Email: support@objectstack.dev (for urgent issues)

content/docs/quick-start/build-first-app.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -363,5 +363,5 @@ All schemas are validated at build time using Zod. Check the error message for w
363363

364364
## Full Code
365365

366-
The complete source code for this tutorial is available at:
367-
- [GitHub: examples/task-manager](https://github.com/objectstack-ai/spec/tree/main/examples/task-manager)
366+
The complete source code for a similar example is available at:
367+
- [GitHub: examples/todo](https://github.com/objectstack-ai/spec/tree/main/examples/todo)

content/docs/specifications/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ Example:
226226
Want to propose changes or additions?
227227

228228
1. **Read:** [Contributing Guide](https://github.com/objectstack-ai/spec/blob/main/CONTRIBUTING.md)
229-
2. **Discuss:** [GitHub Discussions](https://github.com/objectstack-ai/spec/discussions)
229+
2. **Discuss:** [GitHub Issues](https://github.com/objectstack-ai/spec/issues)
230230
3. **Propose:** [Submit an RFC](https://github.com/objectstack-ai/spec/issues/new?template=rfc.md)
231231

232232
### RFC Process

content/docs/troubleshooting.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ If you're still stuck after trying these solutions:
485485
- [GitHub Issues](https://github.com/objectstack-ai/spec/issues)
486486

487487
2. **Ask the community:**
488-
- [GitHub Discussions](https://github.com/objectstack-ai/spec/discussions)
488+
- [GitHub Issues](https://github.com/objectstack-ai/spec/issues)
489489

490490
3. **Report a bug:**
491491
- [Create a new issue](https://github.com/objectstack-ai/spec/issues/new)

content/docs/tutorials.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,12 +126,12 @@ Apply what you've learned to build your own application!
126126
## Community Examples
127127

128128
Check out community-contributed examples:
129-
- [GitHub Discussions](https://github.com/objectstack-ai/spec/discussions)
129+
- [GitHub Issues](https://github.com/objectstack-ai/spec/issues)
130130
- [Example Gallery](https://github.com/objectstack-ai/spec/tree/main/examples)
131131

132132
## Get Help
133133

134134
Stuck on a tutorial?
135135
- Check the [Troubleshooting Guide](/docs/troubleshooting)
136-
- Ask in [GitHub Discussions](https://github.com/objectstack-ai/spec/discussions)
136+
- Ask in [GitHub Issues](https://github.com/objectstack-ai/spec/issues)
137137
- Review the [FAQ](/docs/faq)

lychee.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ follow_redirects = true
2121
include_fragments = false
2222

2323
# Verbose output
24-
verbose = true
24+
# Accepts log level: "error", "warn", "info", "debug", "trace"
25+
verbose = "info"
2526

2627
# Remap internal documentation links to actual file paths
2728
# Maps /docs/* routes to content/docs/*.mdx or content/docs/*.md files

0 commit comments

Comments
 (0)