aboutsummaryrefslogtreecommitdiff
path: root/.gitea/workflows/renovate.yml
blob: c435afe4b560fefd2c4c0e6dd5fff22bddc12aca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
name: RenovateBot

on:
  schedule:
    - cron: "@daily"
  push:
    branches:
      - master

jobs:
  renovate:
    container: ghcr.io/renovatebot/renovate:38
    runs-on: ubuntu-latest

    steps:
      - name: Checkout code
        uses: actions/checkout@v4

      - name: Run renovate
        run: |
          renovate
        env:
          LOG_LEVEL: debug
          RENOVATE_CONFIG_FILE: renovate.config.cjs
          RENOVATE_REPOSITORIES: ${{ gitea.repository }}
          RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}