Compare commits
28 Commits
40c3d229ad
...
main
Author | SHA1 | Date | |
---|---|---|---|
a8ee22e39e | |||
a331a2692f | |||
b521825764 | |||
|
010b28b4dd | ||
a29531ef7d | |||
94b1dc1618 | |||
6134bd4ec0 | |||
8d8c4b6bd9 | |||
b35bef4756 | |||
0dbc560792 | |||
3e8226f728 | |||
21e7c9ede4 | |||
0aa0fc5047 | |||
f8075a2ecf | |||
8651522cd3 | |||
e14baa42ad | |||
1f013e37c8 | |||
caf53f9cc8 | |||
942deaf5e3 | |||
a5cb5b2a54 | |||
214ffcf72e | |||
de974aa80a | |||
27bafed67a | |||
247acbfbfc | |||
806e744448 | |||
73fc1a6bbd | |||
c450e4c76d | |||
|
3723e2345c |
@@ -1,20 +1,22 @@
|
|||||||
name: renovate
|
name: renovate
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 2 * * 0' # runs weekly on Sunday at 02:00
|
- cron: '0 2 * * *' # runs daily at 02:00
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
jobs:
|
- 'main'
|
||||||
renovate:
|
|
||||||
runs-on: ubuntu-latest
|
jobs:
|
||||||
container: ghcr.io/renovatebot/renovate:37
|
renovate:
|
||||||
steps:
|
runs-on: ubuntu-latest
|
||||||
- uses: actions/checkout@v4
|
container: ghcr.io/renovatebot/renovate:latest
|
||||||
- run: renovate
|
steps:
|
||||||
env:
|
- uses: actions/checkout@v4
|
||||||
RENOVATE_CONFIG_FILE: "/workspace/sora/renovate-config/config.js"
|
- run: renovate
|
||||||
LOG_LEVEL: "debug"
|
env:
|
||||||
RENOVATE_CONFIG_MIGRATION: "true"
|
RENOVATE_CONFIG_FILE: "/workspace/sora/renovate-config/config.js"
|
||||||
RENOVATE_TOKEN: ${{ secrets.GT_TOKEN_FOR_UPDATES }}
|
LOG_LEVEL: "debug"
|
||||||
|
RENOVATE_CONFIG_MIGRATION: "true"
|
||||||
|
RENOVATE_TOKEN: ${{ secrets.GT_TOKEN_FOR_UPDATES }}
|
||||||
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|
@@ -4,7 +4,7 @@ module.exports = {
|
|||||||
"platform": "gitea",
|
"platform": "gitea",
|
||||||
"onboardingConfigFileName": "renovate.json",
|
"onboardingConfigFileName": "renovate.json",
|
||||||
"autodiscover": true,
|
"autodiscover": true,
|
||||||
"autodiscoverFilter": ["sora/*"],
|
"autodiscoverFilter": ["sora/*", "helcel/*", "telebot/*"],
|
||||||
"optimizeForDisabled": true,
|
"optimizeForDisabled": true,
|
||||||
"forkProcessing": "disabled",
|
"forkProcessing": "disabled",
|
||||||
"dryRun": null,
|
"dryRun": null,
|
||||||
|
67
default.json
67
default.json
@@ -1,28 +1,41 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
"extends": ["sora/renovate-config"],
|
"extends": ["sora/renovate-config"],
|
||||||
"dependencyDashboard": true,
|
"dependencyDashboard": true,
|
||||||
"_enabledManagers": [ "github-actions" ],
|
"_enabledManagers": [ "github-actions" ],
|
||||||
"automerge": true,
|
"automerge": true,
|
||||||
"ignoreTests": true,
|
"ignoreTests": true,
|
||||||
"packageRules": [
|
"packageRules": [
|
||||||
{
|
{
|
||||||
"description": "use fix scope for renovate updates",
|
"description": "use fix scope for renovate updates",
|
||||||
"matchPackageNames": ["renovatebot/renovate"],
|
"matchPackageNames": ["renovatebot/renovate"],
|
||||||
"semanticCommitType": "fix"
|
"semanticCommitType": "fix"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"description": "Automerge renovate updates",
|
"description": "Automerge renovate updates",
|
||||||
"matchPackageNames": ["renovatebot/renovate"],
|
"matchPackageNames": ["renovatebot/renovate"],
|
||||||
"matchUpdateTypes": ["minor", "patch", "digest"],
|
"matchUpdateTypes": ["minor", "patch", "digest"],
|
||||||
"automerge": true
|
"automerge": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"nix": {
|
"nix": {
|
||||||
"enabled": true
|
"enabled": true
|
||||||
},
|
},
|
||||||
"labels": [
|
"labels": [
|
||||||
"renovate",
|
"renovate",
|
||||||
"bot"
|
"bot"
|
||||||
]
|
],
|
||||||
|
"lockFileMaintenance": {
|
||||||
|
"enabled": true,
|
||||||
|
"schedule": [
|
||||||
|
"every weekend"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"schedule": [
|
||||||
|
"every weekday",
|
||||||
|
"every weekend"
|
||||||
|
],
|
||||||
|
"automergeSchedule": [
|
||||||
|
"every weekend"
|
||||||
|
]
|
||||||
}
|
}
|
6
renovate.json
Normal file
6
renovate.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
|
"extends": [
|
||||||
|
"sora/renovate-config"
|
||||||
|
]
|
||||||
|
}
|
Reference in New Issue
Block a user