Skip to content

Commit 56b69d3

Browse files
committed
fix: Update push triggers in workflow files to ignore version tags
1 parent 5b3cb8c commit 56b69d3

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/test-python-bindings.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: Test Python Bindings
33
on:
44
# Run on push to bindings/python/ directory
55
push:
6+
tags-ignore:
7+
- '[0-9]+.[0-9]+.[0-9]+*'
68
paths:
79
- 'bindings/python/**'
810
- '.github/workflows/test-python-bindings.yml'

.github/workflows/test-python-examples.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: Test Python Examples
33
on:
44
# Run on push to bindings/python/ directory
55
push:
6+
tags-ignore:
7+
- '[0-9]+.[0-9]+.[0-9]+*'
68
paths:
79
- 'bindings/python/**'
810
- '.github/workflows/test-python-examples.yml'

0 commit comments

Comments
 (0)