aboutsummaryrefslogtreecommitdiff
path: root/.gitea
diff options
context:
space:
mode:
Diffstat (limited to '.gitea')
-rw-r--r--.gitea/renovate.json15
-rw-r--r--.gitea/workflows/renovate.yml16
2 files changed, 31 insertions, 0 deletions
diff --git a/.gitea/renovate.json b/.gitea/renovate.json
new file mode 100644
index 0000000..f918098
--- /dev/null
+++ b/.gitea/renovate.json
@@ -0,0 +1,15 @@
+{
+ "$schema": "https://docs.renovatebot.com/renovate-schema.json",
+ "extends": ["config:recommended", ":disableDependencyDashboard"],
+ "assignees": ["valentineus"],
+ "labels": ["dependencies", "automated"],
+ "packageRules": [
+ {
+ "groupName": "all digest updates",
+ "groupSlug": "all-digest",
+ "matchUpdateTypes": ["minor", "patch", "pin", "digest"],
+ "matchPackageNames": ["*"],
+ "automerge": true
+ }
+ ]
+}
diff --git a/.gitea/workflows/renovate.yml b/.gitea/workflows/renovate.yml
new file mode 100644
index 0000000..ceab89e
--- /dev/null
+++ b/.gitea/workflows/renovate.yml
@@ -0,0 +1,16 @@
+name: RenovateBot
+on:
+ schedule:
+ - cron: "@daily"
+
+jobs:
+ renovate:
+ container: ghcr.io/renovatebot/renovate:40
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v4
+ - run: renovate
+ env:
+ RENOVATE_CONFIG_FILE: renovate.config.cjs
+ RENOVATE_REPOSITORIES: ${{ gitea.repository }}
+ RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}