Compare commits

...

4 Commits

Author SHA1 Message Date
a9d867320c Update renovate-config.js
All checks were successful
renovate / renovate (push) Successful in 36s
2026-01-06 05:47:46 +00:00
5fc530e27e Update renovate.json
Some checks failed
renovate / renovate (push) Failing after 37s
2026-01-06 05:41:36 +00:00
250ce74e10 Merge pull request 'Pin actions/checkout action to 8e8c483' (#2) from renovate/pin-dependencies into main
Some checks failed
renovate / renovate (push) Failing after 36s
Reviewed-on: #2
2026-01-06 05:30:41 +00:00
b5ac64fba5 Pin actions/checkout action to 8e8c483 2026-01-06 05:25:57 +00:00
3 changed files with 25 additions and 5 deletions

View File

@@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: git.fossy.my.id/renovate-clanker/renovate:latest container: git.fossy.my.id/renovate-clanker/renovate:latest
steps: steps:
- uses: actions/checkout@v6 - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- run: renovate - run: renovate
env: env:
RENOVATE_CONFIG_FILE: ${{ gitea.workspace }}/renovate-config.js RENOVATE_CONFIG_FILE: ${{ gitea.workspace }}/renovate-config.js

View File

@@ -5,6 +5,7 @@ module.exports = {
"onboardingConfigFileName": "renovate.json", "onboardingConfigFileName": "renovate.json",
"autodiscover": true, "autodiscover": true,
"optimizeForDisabled": true, "optimizeForDisabled": true,
"commitStatus": false, "forkProcessing": "disabled",
"prCreation": "immediate", "dryRun": null,
"binarySource": "install",
}; };

View File

@@ -1,4 +1,23 @@
{ {
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["helpers:pinGitHubActionDigests"] "extends": ["gitea/renovate-config"],
"dependencyDashboard": true,
"enabledManagers": [
"github-actions"
],
"automerge": true,
"ignoreTests": true,
"packageRules": [
{
"description": "use fix scope for renovate updates",
"matchPackageNames": ["renovatebot/renovate"],
"semanticCommitType": "fix"
},
{
"description": "Automerge renovate updates",
"matchPackageNames": ["renovatebot/renovate"],
"matchUpdateTypes": ["minor", "patch", "digest"],
"automerge": true
}
]
} }