Conversation
There was a problem hiding this comment.
Pull request overview
This pull request disables the PR link checker GitHub Actions workflow by commenting out all of its content. The workflow was responsible for automatically checking documentation links in pull requests to detect broken links before they are merged.
Changes:
- Commented out the entire PR link checker workflow configuration instead of deleting it
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| # name: 'PR Docs Link Check' | ||
|
|
||
| on: | ||
| pull_request: | ||
| # on: | ||
| # pull_request: | ||
|
|
||
| jobs: | ||
| check-docs-links: | ||
| uses: papermoonio/workflows/.github/workflows/core-pr-link-checker.yml@main | ||
| with: | ||
| mkdocs_repo: papermoonio/tanssi-mkdocs | ||
| docs_repo: moondance-labs/tanssi-docs | ||
| docs_checkout: tanssi-docs | ||
| url: https://docs.tanssi.network | ||
| secrets: | ||
| GH_TOKEN: ${{ secrets.GH_PR_404_CHECKER }} | ||
| # jobs: | ||
| # check-docs-links: | ||
| # uses: papermoonio/workflows/.github/workflows/core-pr-link-checker.yml@main | ||
| # with: | ||
| # mkdocs_repo: papermoonio/tanssi-mkdocs | ||
| # docs_repo: moondance-labs/tanssi-docs | ||
| # docs_checkout: tanssi-docs | ||
| # url: https://docs.tanssi.network | ||
| # secrets: | ||
| # GH_TOKEN: ${{ secrets.GH_PR_404_CHECKER }} |
There was a problem hiding this comment.
Disabling the link checker removes an important quality gate for documentation changes. This could allow broken links to be merged into the documentation site, resulting in a degraded user experience. If the link checker must be disabled, consider implementing an alternative mechanism to verify link integrity (e.g., manual review checklist, periodic scheduled link checking, or a different link validation tool).
No description provided.