Add Forgejo workflow and renovate.json config to automatically check for gomod, Docker, and GitHub Actions dependency updates. Also bumps golang.org/x/net v0.50.0 → v0.51.0.
64 lines
1.3 KiB
JSON
64 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
"extends": [
|
|
"config:recommended"
|
|
],
|
|
"gitAuthor": "Renovate Bot <bot@renovateapp.com>",
|
|
"branchPrefix": "renovate/",
|
|
"semanticCommits": "enabled",
|
|
"dependencyDashboard": true,
|
|
"labels": [
|
|
"dependencies"
|
|
],
|
|
"schedule": [
|
|
"at any time"
|
|
],
|
|
"timezone": "UTC",
|
|
"prConcurrentLimit": 10,
|
|
"prCreation": "immediate",
|
|
"automerge": false,
|
|
"rangeStrategy": "bump",
|
|
"separateMajorMinor": true,
|
|
"separateMinorPatch": false,
|
|
"packageRules": [
|
|
{
|
|
"description": "Go module dependencies",
|
|
"matchManagers": [
|
|
"gomod"
|
|
],
|
|
"matchUpdateTypes": [
|
|
"major",
|
|
"minor",
|
|
"patch"
|
|
],
|
|
"groupName": null,
|
|
"commitMessagePrefix": "chore(deps):"
|
|
},
|
|
{
|
|
"description": "Docker dependencies",
|
|
"matchManagers": [
|
|
"dockerfile"
|
|
],
|
|
"matchUpdateTypes": [
|
|
"major",
|
|
"minor",
|
|
"patch"
|
|
],
|
|
"groupName": null,
|
|
"commitMessagePrefix": "chore(deps):"
|
|
},
|
|
{
|
|
"description": "GitHub Actions",
|
|
"matchManagers": [
|
|
"github-actions"
|
|
],
|
|
"matchUpdateTypes": [
|
|
"major",
|
|
"minor",
|
|
"patch"
|
|
],
|
|
"groupName": null,
|
|
"commitMessagePrefix": "chore(deps):"
|
|
}
|
|
]
|
|
}
|