mirror of
https://github.com/ivuorinen/renovate-config.git
synced 2026-02-15 04:51:23 +00:00
chore: update config, add README & LICENSE
This commit is contained in:
21
LICENSE
Normal file
21
LICENSE
Normal file
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2024 Ismo Vuorinen
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
33
README.md
Normal file
33
README.md
Normal file
@@ -0,0 +1,33 @@
|
||||
# Renovate configs
|
||||
|
||||
[Renovate](https://github.com/renovatebot/renovate) is a tool for automating
|
||||
dependency updates. This repository contains my personal
|
||||
Renovate configuration.
|
||||
|
||||
This configuration and Renovate creates a single issue in the repository for
|
||||
tracking all dependency updates. Renovate will automatically update the
|
||||
issue with new updates and you can force creation and rerunning of the
|
||||
Renovate bot by checking list items in the issue.
|
||||
|
||||
Updates to the configuration are automatically applied to all repositories
|
||||
that use this configuration. If you want to use this configuration in your
|
||||
projects you can do so by extending this configuration in your own
|
||||
in `.github/renovate.json` file.
|
||||
|
||||
Please see Renovate configuration documentation to see how you can
|
||||
extend this configuration to suit your needs.
|
||||
|
||||
## Basic usage:
|
||||
|
||||
Create a file to `.github/renovate.json` with the following content:
|
||||
|
||||
```json
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": ["github>ivuorinen/renovate-config"]
|
||||
}
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
[MIT](LICENSE)
|
||||
38
default.json
38
default.json
@@ -59,7 +59,7 @@
|
||||
],
|
||||
"commitMessagePrefix": "feat(container)!: ",
|
||||
"commitMessageTopic": "{{depName}}",
|
||||
"commitMessageExtra": " ( {{currentVersion}} → {{newVersion}} )"
|
||||
"commitMessageExtra": " ({{currentVersion}} → {{newVersion}})"
|
||||
},
|
||||
{
|
||||
"matchDatasources": [
|
||||
@@ -71,7 +71,7 @@
|
||||
"semanticCommitType": "feat",
|
||||
"semanticCommitScope": "container",
|
||||
"commitMessageTopic": "{{depName}}",
|
||||
"commitMessageExtra": "( {{currentVersion}} → {{newVersion}} )"
|
||||
"commitMessageExtra": "({{currentVersion}} → {{newVersion}})"
|
||||
},
|
||||
{
|
||||
"matchDatasources": [
|
||||
@@ -83,7 +83,7 @@
|
||||
"semanticCommitType": "fix",
|
||||
"semanticCommitScope": "container",
|
||||
"commitMessageTopic": "{{depName}}",
|
||||
"commitMessageExtra": "( {{currentVersion}} → {{newVersion}} )"
|
||||
"commitMessageExtra": "({{currentVersion}} → {{newVersion}})"
|
||||
},
|
||||
{
|
||||
"matchDatasources": [
|
||||
@@ -95,7 +95,7 @@
|
||||
"semanticCommitType": "chore",
|
||||
"semanticCommitScope": "container",
|
||||
"commitMessageTopic": "{{depName}}",
|
||||
"commitMessageExtra": "( {{currentDigestShort}} → {{newDigestShort}} )"
|
||||
"commitMessageExtra": "({{currentDigestShort}} → {{newDigestShort}})"
|
||||
},
|
||||
{
|
||||
"matchDatasources": [
|
||||
@@ -106,7 +106,7 @@
|
||||
],
|
||||
"commitMessagePrefix": "feat(helm)!: ",
|
||||
"commitMessageTopic": "{{depName}}",
|
||||
"commitMessageExtra": "( {{currentVersion}} → {{newVersion}} )"
|
||||
"commitMessageExtra": "({{currentVersion}} → {{newVersion}})"
|
||||
},
|
||||
{
|
||||
"matchDatasources": [
|
||||
@@ -118,7 +118,7 @@
|
||||
"semanticCommitType": "feat",
|
||||
"semanticCommitScope": "helm",
|
||||
"commitMessageTopic": "{{depName}}",
|
||||
"commitMessageExtra": "( {{currentVersion}} → {{newVersion}} )"
|
||||
"commitMessageExtra": "({{currentVersion}} → {{newVersion}})"
|
||||
},
|
||||
{
|
||||
"matchDatasources": [
|
||||
@@ -130,7 +130,7 @@
|
||||
"semanticCommitType": "fix",
|
||||
"semanticCommitScope": "helm",
|
||||
"commitMessageTopic": "{{depName}}",
|
||||
"commitMessageExtra": "( {{currentVersion}} → {{newVersion}} )"
|
||||
"commitMessageExtra": "({{currentVersion}} → {{newVersion}})"
|
||||
},
|
||||
{
|
||||
"matchDatasources": [
|
||||
@@ -142,7 +142,7 @@
|
||||
],
|
||||
"commitMessagePrefix": "feat(ansible)!: ",
|
||||
"commitMessageTopic": "{{depName}}",
|
||||
"commitMessageExtra": "( {{currentVersion}} → {{newVersion}} )"
|
||||
"commitMessageExtra": "({{currentVersion}} → {{newVersion}})"
|
||||
},
|
||||
{
|
||||
"matchDatasources": [
|
||||
@@ -155,7 +155,7 @@
|
||||
"semanticCommitType": "feat",
|
||||
"semanticCommitScope": "ansible",
|
||||
"commitMessageTopic": "{{depName}}",
|
||||
"commitMessageExtra": "( {{currentVersion}} → {{newVersion}} )"
|
||||
"commitMessageExtra": "({{currentVersion}} → {{newVersion}})"
|
||||
},
|
||||
{
|
||||
"matchDatasources": [
|
||||
@@ -168,7 +168,7 @@
|
||||
"semanticCommitType": "fix",
|
||||
"semanticCommitScope": "ansible",
|
||||
"commitMessageTopic": "{{depName}}",
|
||||
"commitMessageExtra": "( {{currentVersion}} → {{newVersion}} )"
|
||||
"commitMessageExtra": "({{currentVersion}} → {{newVersion}})"
|
||||
},
|
||||
{
|
||||
"matchDatasources": [
|
||||
@@ -179,7 +179,7 @@
|
||||
],
|
||||
"commitMessagePrefix": "feat(terraform)!: ",
|
||||
"commitMessageTopic": "{{depName}}",
|
||||
"commitMessageExtra": "( {{currentVersion}} → {{newVersion}} )"
|
||||
"commitMessageExtra": "({{currentVersion}} → {{newVersion}})"
|
||||
},
|
||||
{
|
||||
"matchDatasources": [
|
||||
@@ -191,7 +191,7 @@
|
||||
"semanticCommitType": "feat",
|
||||
"semanticCommitScope": "terraform",
|
||||
"commitMessageTopic": "{{depName}}",
|
||||
"commitMessageExtra": "( {{currentVersion}} → {{newVersion}} )"
|
||||
"commitMessageExtra": "({{currentVersion}} → {{newVersion}})"
|
||||
},
|
||||
{
|
||||
"matchDatasources": [
|
||||
@@ -203,7 +203,7 @@
|
||||
"semanticCommitType": "fix",
|
||||
"semanticCommitScope": "terraform",
|
||||
"commitMessageTopic": "{{depName}}",
|
||||
"commitMessageExtra": "( {{currentVersion}} → {{newVersion}} )"
|
||||
"commitMessageExtra": "({{currentVersion}} → {{newVersion}})"
|
||||
},
|
||||
{
|
||||
"matchDatasources": [
|
||||
@@ -215,7 +215,7 @@
|
||||
],
|
||||
"commitMessagePrefix": "feat(github-release)!: ",
|
||||
"commitMessageTopic": "{{depName}}",
|
||||
"commitMessageExtra": "( {{currentVersion}} → {{newVersion}} )"
|
||||
"commitMessageExtra": "({{currentVersion}} → {{newVersion}})"
|
||||
},
|
||||
{
|
||||
"matchDatasources": [
|
||||
@@ -228,7 +228,7 @@
|
||||
"semanticCommitType": "feat",
|
||||
"semanticCommitScope": "github-release",
|
||||
"commitMessageTopic": "{{depName}}",
|
||||
"commitMessageExtra": "( {{currentVersion}} → {{newVersion}} )"
|
||||
"commitMessageExtra": "({{currentVersion}} → {{newVersion}})"
|
||||
},
|
||||
{
|
||||
"matchDatasources": [
|
||||
@@ -241,7 +241,7 @@
|
||||
"semanticCommitType": "fix",
|
||||
"semanticCommitScope": "github-release",
|
||||
"commitMessageTopic": "{{depName}}",
|
||||
"commitMessageExtra": "( {{currentVersion}} → {{newVersion}} )"
|
||||
"commitMessageExtra": "({{currentVersion}} → {{newVersion}})"
|
||||
},
|
||||
{
|
||||
"matchManagers": [
|
||||
@@ -252,7 +252,7 @@
|
||||
],
|
||||
"commitMessagePrefix": "feat(github-action)!: ",
|
||||
"commitMessageTopic": "{{depName}}",
|
||||
"commitMessageExtra": "( {{currentVersion}} → {{newVersion}} )"
|
||||
"commitMessageExtra": "({{currentVersion}} → {{newVersion}})"
|
||||
},
|
||||
{
|
||||
"matchManagers": [
|
||||
@@ -264,7 +264,7 @@
|
||||
"semanticCommitType": "feat",
|
||||
"semanticCommitScope": "github-action",
|
||||
"commitMessageTopic": "{{depName}}",
|
||||
"commitMessageExtra": "( {{currentVersion}} → {{newVersion}} )"
|
||||
"commitMessageExtra": "({{currentVersion}} → {{newVersion}})"
|
||||
},
|
||||
{
|
||||
"matchManagers": [
|
||||
@@ -276,7 +276,7 @@
|
||||
"semanticCommitType": "fix",
|
||||
"semanticCommitScope": "github-action",
|
||||
"commitMessageTopic": "{{depName}}",
|
||||
"commitMessageExtra": "( {{currentVersion}} → {{newVersion}} )"
|
||||
"commitMessageExtra": "({{currentVersion}} → {{newVersion}})"
|
||||
},
|
||||
{
|
||||
"description": [
|
||||
|
||||
Reference in New Issue
Block a user