Compare commits

..

9 Commits

Author SHA1 Message Date
a9d867320c Update renovate-config.js
All checks were successful
renovate / renovate (push) Successful in 37s
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
7fc2bc5cfd Update renovate.json
Some checks failed
renovate / renovate (push) Failing after 38s
2026-01-06 05:25:48 +00:00
17e18f6850 Update renovate-config.js
Some checks failed
renovate / renovate (push) Failing after 37s
2026-01-06 05:23:07 +00:00
8dd36e0baf Update .gitea/workflows/renovate.yml
Some checks failed
renovate / renovate (push) Failing after 36s
2026-01-06 05:20:37 +00:00
d33f458f38 Merge pull request 'Configure Renovate' (#1) from renovate/configure into main
Some checks are pending
renovate / renovate (push) Waiting to run
Reviewed-on: #1
2026-01-04 09:37:26 +00:00
aff311c282 Add renovate.json 2026-01-04 09:34:23 +00:00
3 changed files with 30 additions and 1 deletions

View File

@@ -12,10 +12,13 @@ jobs:
runs-on: ubuntu-latest
container: git.fossy.my.id/renovate-clanker/renovate:latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- run: renovate
env:
RENOVATE_CONFIG_FILE: ${{ gitea.workspace }}/renovate-config.js
LOG_LEVEL: "debug"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
RENOVATE_PLATFORM: gitea
RENOVATE_ENDPOINT: https://git.fossy.my.id/api/v1
RENOVATE_AUTODISCOVER: "true"
GITHUB_COM_TOKEN: ${{ secrets.COM_TOKEN }}

View File

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

23
renovate.json Normal file
View File

@@ -0,0 +1,23 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"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
}
]
}