nixvim/.github/workflows/renovate.yaml
Roel de Cort 1465a19ce2
feat: configure nix update and renovate pipeline (#6)
Create pipelines to run Renovate and Nix Flake lock updates.
2024-06-21 14:55:59 +02:00

16 lines
366 B
YAML

on:
schedule:
- cron: "30 00 * * 0"
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: Renovate
uses: renovatebot/github-action@v40.1.12
with:
configurationFile: renovate.json5
renovate-version: full
token: ${{ secrets.RENOVATE_TOKEN }}