.dotfiles/.github/workflows/flake-updater.yml
Workflow config file is invalid. Please check your config file: yaml: line 9: did not find expected key
Tyler Mayoff 19d022e61c ga
2025-07-05 09:08:32 -04:00

32 lines
824 B
YAML

name: Update flake.lock
on:
workflow_dispatch: # allows manual triggering
schedule:
- cron: '0 0 * * 0' # runs weekly on Sunday at 00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install nix
uses: DeterminateSystems/determinate-nix-action@v3.5.2
with:
extra-conf: "lazy-trees = true"
- uses: DeterminateSystems/magic-nix-cache-action@main
with:
use-flakehub: false
- uses: DeterminateSystems/update-flake-lock@v24
with:
pr-title: "Update flake.lock" # Title of PR to be created
pr-labels: | # Labels to be set on the PR
dependencies
automated
token: ${{ secrets.FLAKE_PR_TOKEN }}
path-to-flake-dir: dot_config/flake/