cmc/cleberg.net

My personal web garden & blog.

clone: git clone https://gitbay.org/cmc/cleberg.net.git

f47d13aed969c0f733659b8a8be7c6468f5e11ec

unsigned

author: Christian Cleberg <hello@cleberg.net> · 2025-04-03T01:48:10Z

update pylint action to only run when python files are modified
 .github/workflows/pylint.yml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml
index 32d3790..1c22aa5 100644
--- a/.github/workflows/pylint.yml
+++ b/.github/workflows/pylint.yml
@@ -1,6 +1,9 @@
 name: Pylint
 
-on: [push]
+on:
+  push:
+    paths:
+      - '**.py'
 
 jobs:
   build: