branch: elpa/with-simulated-input
commit 9d082a372a785ca69a88456f406bf2474f503953
Author: Ryan C. Thompson <[email protected]>
Commit: Ryan C. Thompson <[email protected]>

    Be more selective about which file changes trigger a CI run
---
 .github/workflows/test.yml | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index dbf2dc5568..9621e7814a 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -2,11 +2,15 @@ name: CI
 
 on:
   push:
-    paths-ignore:
-      - '**.md'
+    paths:
+      - '**.el'
+      - '.github/**'
+      - 'Eldev'
   pull_request:
-    paths-ignore:
-      - '**.md'
+    paths:
+      - '**.el'
+      - '.github/**'
+      - 'Eldev'
 
 jobs:
   test:

Reply via email to