git.lucas.co / cce-compositor
Wayland compositor (wlroots)
git clone https://git.lucas.co/cce-compositor.git

scenefx/.github/workflows/flake-update.yml (699B)

 1 name: "Flake.lock: update Nix dependencies"
 2 
 3 on:
 4   workflow_dispatch: # allows manual triggering
 5   schedule:
 6     - cron: '0 0 * * 0' # runs weekly on Sunday at 00:00
 7 
 8 jobs:
 9   nix-flake-update:
10     permissions:
11       contents: write
12       id-token: write
13       issues: write
14       pull-requests: write
15     runs-on: ubuntu-latest
16     steps:
17       - uses: actions/checkout@v4
18       - uses: DeterminateSystems/determinate-nix-action@v3
19       - uses: DeterminateSystems/update-flake-lock@main
20         with:
21           pr-title: "chore: update Nix flake inputs" # Title of PR to be created
22           pr-labels: |                  # Labels to be set on the PR
23             dependencies
24             automated