You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/label-actions.yml
+2-2
Original file line number
Diff line number
Diff line change
@@ -632,10 +632,10 @@
632
632
Hi there,
633
633
634
634
635
-
You are seeing this message because someone - maybe you - has suggested that the documentation should be improved.
635
+
Someone (maybe even you) suggested the documentation should be improved.
636
636
637
637
638
-
The good news is that essentially all Renovate documentation is Open Source in this repository and can be improved by you too! If you have a suggestion for improvement, please consider opening a PR to improve the documentation, instead of just complaining about it (however subtlely or politely you intended it). Even if English isn't your first language or you're not _sure_ what to write, take a shot at it and we will guide you during the PR review. Documentation updates can be done easily in your browser on GitHub.com and do not require you to clone any code.
638
+
Good news, nearly all Renovate documentation is Open Source. This means you can improve the docs yourself! Please consider opening a PR to improve our documentation, instead of complaining (however subtly or politely). Even if English isn't your first language, or you're not _sure_ what to write, please open a PR anyway. We will help you to finish the PR. You can make changes to our docs in your browser on GitHub.com. You don't need to clone any code with Git.
The [Renovate docs site](https://docs.renovatebot.com) is built from [a dedicated publishing repository](https://github.com/renovatebot/renovatebot.github.io) that pulls the source files from [this repository](../usage/).
4
+
5
+
The publishing process is triggered automatically via Renovate updates.
6
+
If you have submitted a documentation PR and your changes are not published within a day feel free to ping the maintainers.
Copy file name to clipboardExpand all lines: docs/usage/configuration-options.md
+20
Original file line number
Diff line number
Diff line change
@@ -79,6 +79,14 @@ With the above config:
79
79
- ESLint dependencies will have the label `linting`
80
80
- All other dependencies will have the label `dependencies`
81
81
82
+
If you want to use dynamic labels, you can use [templates](./templates.md) such as this example using `depName` for `addLabels`:
83
+
84
+
```json
85
+
{
86
+
"addLabels": ["{{depName}}"]
87
+
}
88
+
```
89
+
82
90
<!-- prettier-ignore -->
83
91
!!! note
84
92
Keep your labels within the maximum character limit for your Git hosting platform.
@@ -2438,6 +2446,17 @@ In those cases a feature request needs to be implemented.
2438
2446
!!! warning "Warning for Maven users"
2439
2447
For `minimumReleaseAge` to work, the Maven source must return reliable `last-modified` headers.
2440
2448
2449
+
<!-- markdownlint-disable MD046 -->
2450
+
If your custom Maven source registry is **pull-through** and does _not_ support the `last-modified` header, like GAR (Google Artifact Registry's Maven implementation) then you can extend the Maven source registry URL with `https://repo1.maven.org/maven2` as the first item. Then the `currentVersionTimestamp` via `last-modified` will be taken from Maven central for public dependencies.
0 commit comments