diff options
| author | Valentin Popov <valentin@popov.link> | 2025-05-08 16:12:45 +0300 | 
|---|---|---|
| committer | Valentin Popov <valentin@popov.link> | 2025-05-08 16:12:45 +0300 | 
| commit | 2b4908aa922cc5656a964305d48cc94a6b3fe00a (patch) | |
| tree | 10062f9757cb12f35d2d0e7b540bea35e7df6a10 /.gitea/workflows | |
| parent | 001585b8a63dfeb1d0ca71ffcc612f65f4fe2b56 (diff) | |
| download | popov.link-2b4908aa922cc5656a964305d48cc94a6b3fe00a.tar.xz popov.link-2b4908aa922cc5656a964305d48cc94a6b3fe00a.zip | |
Added self-hosted Renovate Bot
Diffstat (limited to '.gitea/workflows')
| -rw-r--r-- | .gitea/workflows/renovate.yml | 16 | 
1 files changed, 16 insertions, 0 deletions
| diff --git a/.gitea/workflows/renovate.yml b/.gitea/workflows/renovate.yml new file mode 100644 index 0000000..ceab89e --- /dev/null +++ b/.gitea/workflows/renovate.yml @@ -0,0 +1,16 @@ +name: RenovateBot +on: +  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 }} | 
