Compare commits
26 Commits
c450e4c76d
...
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 |
@@ -1,20 +1,22 @@
|
||||
name: renovate
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: '0 2 * * 0' # runs weekly on Sunday at 02:00
|
||||
|
||||
|
||||
jobs:
|
||||
renovate:
|
||||
runs-on: ubuntu-latest
|
||||
container: ghcr.io/renovatebot/renovate:37
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: renovate
|
||||
env:
|
||||
RENOVATE_CONFIG_FILE: "/workspace/sora/renovate-config/config.js"
|
||||
LOG_LEVEL: "debug"
|
||||
RENOVATE_CONFIG_MIGRATION: "true"
|
||||
RENOVATE_TOKEN: ${{ secrets.GT_TOKEN_FOR_UPDATES }}
|
||||
name: renovate
|
||||
on:
|
||||
workflow_dispatch:
|
||||
schedule:
|
||||
- cron: '0 2 * * *' # runs daily at 02:00
|
||||
push:
|
||||
branches:
|
||||
- 'main'
|
||||
|
||||
jobs:
|
||||
renovate:
|
||||
runs-on: ubuntu-latest
|
||||
container: ghcr.io/renovatebot/renovate:latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: renovate
|
||||
env:
|
||||
RENOVATE_CONFIG_FILE: "/workspace/sora/renovate-config/config.js"
|
||||
LOG_LEVEL: "debug"
|
||||
RENOVATE_CONFIG_MIGRATION: "true"
|
||||
RENOVATE_TOKEN: ${{ secrets.GT_TOKEN_FOR_UPDATES }}
|
||||
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|
@@ -4,7 +4,7 @@ module.exports = {
|
||||
"platform": "gitea",
|
||||
"onboardingConfigFileName": "renovate.json",
|
||||
"autodiscover": true,
|
||||
"autodiscoverFilter": ["sora/*"],
|
||||
"autodiscoverFilter": ["sora/*", "helcel/*", "telebot/*"],
|
||||
"optimizeForDisabled": true,
|
||||
"forkProcessing": "disabled",
|
||||
"dryRun": null,
|
||||
|
67
default.json
67
default.json
@@ -1,28 +1,41 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": ["sora/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
|
||||
}
|
||||
],
|
||||
"nix": {
|
||||
"enabled": true
|
||||
},
|
||||
"labels": [
|
||||
"renovate",
|
||||
"bot"
|
||||
]
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": ["sora/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
|
||||
}
|
||||
],
|
||||
"nix": {
|
||||
"enabled": true
|
||||
},
|
||||
"labels": [
|
||||
"renovate",
|
||||
"bot"
|
||||
],
|
||||
"lockFileMaintenance": {
|
||||
"enabled": true,
|
||||
"schedule": [
|
||||
"every weekend"
|
||||
]
|
||||
},
|
||||
"schedule": [
|
||||
"every weekday",
|
||||
"every weekend"
|
||||
],
|
||||
"automergeSchedule": [
|
||||
"every weekend"
|
||||
]
|
||||
}
|
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"local>sora/renovate-config"
|
||||
]
|
||||
}
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"sora/renovate-config"
|
||||
]
|
||||
}
|
||||
|
Reference in New Issue
Block a user