26 lines
633 B
YAML
26 lines
633 B
YAML
name: renovate
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "@daily"
|
|
push:
|
|
branches:
|
|
- renovate
|
|
|
|
jobs:
|
|
renovate:
|
|
runs-on: ubuntu-latest
|
|
container: git.fossy.my.id/renovate-clanker/renovate:latest
|
|
steps:
|
|
- name: Checkout renovate-config repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: Renovate-Clanker/renovate-config
|
|
path: renovate-config
|
|
|
|
- uses: actions/checkout@v4
|
|
- run: renovate
|
|
env:
|
|
RENOVATE_CONFIG_FILE: ${{ gitea.workspace }}/renovate-config/config.js
|
|
LOG_LEVEL: "debug"
|
|
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} |