aboutsummaryrefslogtreecommitdiff
path: root/.gitea/workflows/renovate.yml
blob: 2d6bc4638c5f7570691e836ae76e50bdb679af8f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
name: RenovateBot
on:
  push:
    branches: [master]
  schedule:
    - cron: "@daily"

jobs:
  renovate:
    container: ghcr.io/renovatebot/renovate:40
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - run: renovate
        env:
          RENOVATE_CONFIG_FILE: renovate.config.cjs
          RENOVATE_REPOSITORIES: ${{ gitea.repository }}
          RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
          LOG_LEVEL: debug