From 4ca970a32c426a4d65b7432ca5d028f9a791e18d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Qui=C3=B1ones?= Date: Sat, 26 Apr 2025 08:18:38 -0500 Subject: [PATCH] ci(style): workflow will only run if nix files are mod --- .github/workflows/style.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/style.yml b/.github/workflows/style.yml index 1c6e968..3aad1f0 100644 --- a/.github/workflows/style.yml +++ b/.github/workflows/style.yml @@ -1,5 +1,11 @@ name: Check *.nix files format -on: [push, pull_request] +on: + pull_request: + paths: + - "**.nix " + push: + paths: + - "**.nix" jobs: check-formatting: