Skip to content
Open
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
4 changes: 2 additions & 2 deletions docs/contribution/4-solve-tickets.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,6 @@ If you want to **directly contribute a fix for a bug**, please follow the steps
- Description of the fix and the use cases / solved requirements
- Suitable reviewers for your change (feel free to reach out to us if you need help)
- A reference to the original bug issue
6. Check that your contribution meets the [**Definition of Done**](/docs/code-release-publish#definition-of-done) and that all tests are **passing**
7. Create a release candidate (see our guide here: [Release process](/docs/code-release-publish#build-release-candidate))
6. Check that your contribution meets the [**Definition of Done**](/docs/contribution/code-release-publish#definition-of-done) and that all tests are **passing**
7. [Create a release candidate](/docs/contribution/code-release-publish#build-release-candidate)
8. Get in contact with the issue reporter to validate your fix 💬
15 changes: 11 additions & 4 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,15 @@ const config = {
organizationName: 'SAP',
projectName: 'crossplane-provider-docs',

onBrokenLinks: 'warn',
onBrokenMarkdownLinks: 'warn',
onBrokenLinks: 'throw',
onBrokenAnchors: 'throw',
onDuplicateRoutes: 'throw',

markdown: {
hooks: {
onBrokenMarkdownLinks: 'throw',
},
},

i18n: {
defaultLocale: 'en',
Expand Down Expand Up @@ -90,11 +97,11 @@ const config = {
},
{
label: 'crossplane-provider-btp',
to: '/docs/crossplane-provider-btp/docs/end-user-guides/import-landscape/external-name',
to: '/docs/crossplane-provider-btp/docs/end-user-guides/btp',
},
{
label: 'crossplane-provider-hana',
to: '/docs/crossplane-provider-hana/docs/contribution-notes/20250822-hana-x509-authentication',
to: '/docs/crossplane-provider-hana/docs/end-user-guides/hana',
},
],
},
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default function Home() {
<a href="/crossplane-provider-docs/docs/crossplane-provider-btp/docs/end-user-guides/btp">crossplane-provider-btp</a>
</div>
<div className="action medium alt">
<a href="/crossplane-provider-docs/docs/crossplane-provider-hana/docs/end-user-guides/setup">crossplane-provider-hana</a>
<a href="/crossplane-provider-docs/docs/crossplane-provider-hana/docs/end-user-guides/hana">crossplane-provider-hana</a>
</div>
</div>
</div>
Expand Down
Loading