Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: more link fixes #25687

Merged
merged 1 commit into from
Nov 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/usage/configuration-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ When using with `npm`, we recommend you:
Use `customDatasources` to fetch releases from APIs or statically hosted sites and Renovate has no own datasource.
These datasources can be referred by `customManagers` or can be used to overwrite default datasources.

For more details see the [`custom` datasource documentation](/modules/datasource/custom/).
For more details see the [`custom` datasource documentation](modules/datasource/custom/index.md).

## customManagers

Expand Down Expand Up @@ -965,7 +965,7 @@ It is not needed if either:
### format

Defines which format the API is returning.
Currently `json` or `plain` are supported, see the `custom` [datasource documentation](/modules/datasource/custom/) for more information.
Currently `json` or `plain` are supported, see the `custom` [datasource documentation](modules/datasource/custom/index.md) for more information.

### transformTemplates

Expand Down Expand Up @@ -2565,7 +2565,7 @@ Consider using instead `matchCurrentValue` if you wish to match against the raw
}
```

The syntax of the version range must follow the [versioning scheme](modules/versioning/index.md#supported-versioning) used by the matched package(s).
The syntax of the version range must follow the [versioning scheme](modules/versioning.md#supported-versioning) used by the matched package(s).
This is usually defined by the [manager](modules/manager/index.md#supported-managers) which discovered them or by the default versioning for the package's [datasource](modules/datasource/index.md).
For example, a Gradle package would typically need Gradle constraint syntax (e.g. `[,7.0)`) and not SemVer syntax (e.g. `<7.0`).

Expand Down
4 changes: 2 additions & 2 deletions docs/usage/modules/manager/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ If the default `fileMatch` regular expression for a manager does not match again

#### Ignoring files that match the default fileMatch

Renovate will _extend_ the existing [`fileMatch`](../../configuration-options/index.md#filematch), meaning you don't need to include the default regular expressions like `Dockerfile` in your own array.
Renovate will _extend_ the existing [`fileMatch`](../../configuration-options.md#filematch), meaning you don't need to include the default regular expressions like `Dockerfile` in your own array.
In other words, the regular expression are "additive".
If a manager matches a file that you _don't_ want it to, ignore it using the [`ignorePaths`](../../configuration-options/index.md#ignorepaths) configuration option.
If a manager matches a file that you _don't_ want it to, ignore it using the [`ignorePaths`](../../configuration-options.md#ignorepaths) configuration option.
Also, if you ever find that Renovate is _not_ matching a file name that you're certain it should, check your preset config isn't the cause of it.
The `config:recommended` preset ignores common test and example directory names, for example.

Expand Down
2 changes: 1 addition & 1 deletion lib/modules/manager/batect-wrapper/readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Configuration for Batect wrapper updates.
The default configuration will automatically update both `batect` and `batect.cmd`, similar to running `./batect --upgrade`.

See also: [Batect image reference updates](../batect)
See also: [Batect image reference updates](../batect/index.md)
2 changes: 1 addition & 1 deletion lib/modules/manager/batect/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ For example:

### Bundle versioning

This manager assumes that any bundles referenced use tags for versioning, and that these tags use [SemVer](../versioning/semver/index.md).
This manager assumes that any bundles referenced use tags for versioning, and that these tags use [SemVer](../versioning.md#semantic-versioning).
The implementation of SemVer is strict - versions must follow the `X.Y.Z` or `vX.Y.Z` format.
Versions that don't match this format (eg. `X.Y`) will be ignored.
4 changes: 2 additions & 2 deletions lib/modules/manager/terragrunt/readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Currently by default, Terragrunt support is limited to Terraform registry sources and GitHub sources that include SemVer refs, e.g. like `github.com/hashicorp/example?ref=v1.0.0`.

You can create a custom [versioning config](../../../configuration-options/index.md#versioning) to support non-SemVer references.
You can create a custom [versioning config](../../../configuration-options.md#versioning) to support non-SemVer references.
For example, if you want to reference a tag like `module-v1.2.5`, a block like this would work:

```json
Expand All @@ -21,5 +21,5 @@ terraform {

### Terraform lockfiles

The Terragrunt manager supports [lock file maintenance](../../../configuration-options/index.md#lockfilemaintenance) for `.terraform.lock.hcl` artifacts.
The Terragrunt manager supports [lock file maintenance](../../../configuration-options.md#lockfilemaintenance) for `.terraform.lock.hcl` artifacts.
These artifacts will be updated if and only if the update type is `lockFileMaintenance`.
2 changes: 1 addition & 1 deletion lib/modules/platform/azure/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ always-auth=true
### Add renovate.json file

Additionally, you can create a `renovate.json` file (which holds the Renovate configuration) in the root of the repository you want to update.
[Read more about the Renovate configuration options](../../../configuration-options/index.md)
[Read more about the Renovate configuration options](../../../configuration-options.md)

### Using a single pipeline to update multiple repositories

Expand Down