Skip to content

Commit b2bd9cd

Browse files
committed
IMPROVEMENT: Only run if source code changes
1 parent 9b250be commit b2bd9cd

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/gitavscan.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ name: gitavscan
22

33
on:
44
push:
5+
paths:
6+
- '**/*.py' # Watch for changes in any Python files
57
release:
68
types: [published]
79

.github/workflows/windows_build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
types: [published]
66
workflow_dispatch:
77
push:
8+
paths:
9+
- '**/*.py' # Watch for changes in any Python files
810

911
concurrency:
1012
group: ci-${{github.workflow}}-${{ github.ref }}

0 commit comments

Comments
 (0)