aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-09-11 23:10:22 +0300
committerValentin Popov <valentin@popov.link>2024-09-11 23:10:22 +0300
commitbe3616d2d6d3cff3604880e02b079a2b71b50ff9 (patch)
tree906e5cad944e3012ee5af391136be365e52b4ae2
parente2f0aecf95a443d2b7cd64e909ae23739bc12f8f (diff)
downloadpopov.link-be3616d2d6d3cff3604880e02b079a2b71b50ff9.tar.xz
popov.link-be3616d2d6d3cff3604880e02b079a2b71b50ff9.zip
Update deploy workflow to include RenovateBot job
-rw-r--r--.gitea/workflows/renovate.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.gitea/workflows/renovate.yml b/.gitea/workflows/renovate.yml
new file mode 100644
index 0000000..263bdf8
--- /dev/null
+++ b/.gitea/workflows/renovate.yml
@@ -0,0 +1,16 @@
+name: RenovateBot
+on:
+ schedule:
+ - cron: "@daily"
+
+jobs:
+ renovate:
+ container: ghcr.io/renovatebot/renovate:38
+ 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 }}