Files
popov.link/.gitea/workflows/renovate.yml
Valentin Popov 8d9e6585c7
Some checks failed
RenovateBot / renovate (push) Successful in 1m47s
Test / npm test (push) Has been cancelled
fix: update Renovate workflow to include GITHUB_COM_TOKEN
- Added GITHUB_COM_TOKEN environment variable for Renovate runs.
- Ensured RENOVATE_LOG_LEVEL is set correctly in the workflow.
2026-01-30 17:44:01 +04:00

29 lines
678 B
YAML

name: RenovateBot
on:
schedule:
- cron: "@daily"
push:
branches:
- master
jobs:
renovate:
container: ghcr.io/renovatebot/renovate:43
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Run renovate
run: |
renovate
env:
GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }}
LOG_LEVEL: ${{ vars.RENOVATE_LOG_LEVEL }}
RENOVATE_CONFIG_FILE: renovate.config.cjs
RENOVATE_LOG_LEVEL: ${{ vars.RENOVATE_LOG_LEVEL }}
RENOVATE_REPOSITORIES: ${{ gitea.repository }}
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}