ci: only run on nix-related changes
CI / flake (pull_request) Successful in 1m53s

Add path filters so the workflow triggers only when *.nix files, flake.lock, or the workflow itself change, skipping CI for docs/markdown/unrelated edits.
This commit is contained in:
Emma Thorpe
2026-06-02 15:58:34 +00:00
parent 66555c0416
commit 0346095822
+8
View File
@@ -4,7 +4,15 @@ name: CI
on:
push:
branches: [main]
paths:
- "**.nix"
- "flake.lock"
- ".gitea/workflows/ci.yaml"
pull_request:
paths:
- "**.nix"
- "flake.lock"
- ".gitea/workflows/ci.yaml"
jobs:
flake: