Files
renovate-config/.forgejo/workflows/renovate.yml
T

28 lines
580 B
YAML
Raw Normal View History

2025-07-07 13:26:55 +05:30
name: renovate
on:
workflow_dispatch:
branches:
- main
schedule:
2025-09-21 22:08:38 +05:30
- cron: "03 2 * * *"
2025-07-07 13:26:55 +05:30
push:
branches:
- main
2025-09-21 22:17:04 +05:30
pull_request:
types:
- opened
2025-07-07 13:26:55 +05:30
jobs:
renovate:
runs-on: bookworm-slim
2025-07-07 13:35:24 +05:30
container: ghcr.io/renovatebot/renovate:latest
2025-07-07 13:26:55 +05:30
steps:
2025-12-03 02:08:08 +00:00
- uses: actions/checkout@v6.0.1
2025-07-07 13:26:55 +05:30
- run: renovate
env:
2026-02-07 21:20:52 +05:30
RENOVATE_CONFIG_FILE: ${{ forgejo.workspace }}/config.js
2025-07-07 13:26:55 +05:30
LOG_LEVEL: "debug"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }}