improve renovate: osv vulnerability alerts, abandonment reporting, pr limits #8

Merged
Keli Grubb merged 3 commits from improve-renovate-security-and-pinning into main 2026-08-13 14:33:55 +00:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit bec9fe6f4a - Show all commits
+1 -1
View File
@@ -3,7 +3,7 @@ name: Renovate
on:
workflow_dispatch:
schedule:
- cron: "0 */6 * * *"
- cron: "0 * * * *"
jobs:
renovate:
+3 -3
View File
@@ -1,6 +1,6 @@
# Renovate + Gitea Actions for Gitea
This repo runs [Renovate](https://docs.renovatebot.com/) via **Gitea Actions**, currently every 6 hours. Renovate autodiscovers all Gitea repositories the bot user can access and opens PRs for dependency updates.
This repo runs [Renovate](https://docs.renovatebot.com/) via **Gitea Actions**, currently every hour. Renovate autodiscovers all Gitea repositories the bot user can access and opens PRs for dependency updates.
## How it works
@@ -13,13 +13,13 @@ This repo runs [Renovate](https://docs.renovatebot.com/) via **Gitea Actions**,
### 1. Gitea Actions workflow & schedule
The workflow lives in `.gitea/workflows/renovate.yml` and currently runs every 6 hours:
The workflow lives in `.gitea/workflows/renovate.yml` and currently runs every hour:
```yaml
on:
workflow_dispatch:
schedule:
- cron: "0 */6 * * *"
- cron: "0 * * * *"
```
To change the schedule (e.g. daily or weekly), edit the cron expression there and push a commit.