This is an automated email from the ASF dual-hosted git repository.
ka94 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git
The following commit(s) were added to refs/heads/main by this push:
new fed6857d7 test: Have Python changes trigger GitHub actions (#4837)
fed6857d7 is described below
commit fed6857d720c861175ef87f4bd9df009796d360c
Author: Keon Amini <[email protected]>
AuthorDate: Fri Mar 31 11:21:02 2023 -0500
test: Have Python changes trigger GitHub actions (#4837)
* fix: Make python src code changes trigger Github test actions
* fix: add *.sh and change path regex for py and toml
---
.github/workflows/test-e2e.yml | 3 +++
.github/workflows/test.yml | 3 +++
2 files changed, 6 insertions(+)
diff --git a/.github/workflows/test-e2e.yml b/.github/workflows/test-e2e.yml
index 6887553f3..56806fe58 100644
--- a/.github/workflows/test-e2e.yml
+++ b/.github/workflows/test-e2e.yml
@@ -22,6 +22,9 @@ on:
branches: [main]
paths:
- "**.go"
+ - '**.py'
+ - '**.toml'
+ - '**.sh'
- "Makefile"
- "go.mod"
- "go.sum"
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index bab5abcf0..4a689bce7 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -22,6 +22,9 @@ on:
branches: [ main ]
paths:
- '**.go'
+ - '**.py'
+ - '**.toml'
+ - '**.sh'
- 'Makefile'
- 'go.mod'
- 'go.sum'