keep the hourly schedule
Reverts the cron change and fixes the README, which claimed every 6 hours while the workflow ran hourly.
This commit is contained in:
@@ -3,7 +3,7 @@ name: Renovate
|
|||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 */6 * * *"
|
- cron: "0 * * * *"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
renovate:
|
renovate:
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# Renovate + Gitea Actions for Gitea
|
# 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
|
## How it works
|
||||||
|
|
||||||
@@ -13,13 +13,13 @@ This repo runs [Renovate](https://docs.renovatebot.com/) via **Gitea Actions**,
|
|||||||
|
|
||||||
### 1. Gitea Actions workflow & schedule
|
### 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
|
```yaml
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 */6 * * *"
|
- cron: "0 * * * *"
|
||||||
```
|
```
|
||||||
|
|
||||||
To change the schedule (e.g. daily or weekly), edit the cron expression there and push a commit.
|
To change the schedule (e.g. daily or weekly), edit the cron expression there and push a commit.
|
||||||
|
|||||||
Reference in New Issue
Block a user