This is an automated email from the ASF dual-hosted git repository. jiayu pushed a commit to branch ci-completeness in repository https://gitbox.apache.org/repos/asf/sedona.git
commit 03aa24f80b2a6e9edd5e15998418444cb0034f86 Author: Jia Yu <[email protected]> AuthorDate: Mon May 13 21:53:18 2024 -0700 Make sure each action gets triggered when the yml file gets modified --- .github/workflows/example.yml | 2 ++ .github/workflows/java.yml | 2 ++ .github/workflows/python-wheel.yml | 1 + .github/workflows/python.yml | 2 ++ 4 files changed, 7 insertions(+) diff --git a/.github/workflows/example.yml b/.github/workflows/example.yml index f969da831..3c0da7469 100644 --- a/.github/workflows/example.yml +++ b/.github/workflows/example.yml @@ -5,11 +5,13 @@ on: - master paths: - 'examples/**' + - '.github/workflows/example.yml' pull_request: branches: - '*' paths: - 'examples/**' + - '.github/workflows/example.yml' permissions: contents: read diff --git a/.github/workflows/java.yml b/.github/workflows/java.yml index 3d780c7ae..546d887cf 100644 --- a/.github/workflows/java.yml +++ b/.github/workflows/java.yml @@ -12,6 +12,7 @@ on: - 'flink-shaded/**' - 'snowflake/**' - 'pom.xml' + - '.github/workflows/java.yml' pull_request: branches: - '*' @@ -23,6 +24,7 @@ on: - 'flink-shaded/**' - 'snowflake/**' - 'pom.xml' + - '.github/workflows/java.yml' env: MAVEN_OPTS: -Dmaven.wagon.httpconnectionManager.ttlSeconds=60 diff --git a/.github/workflows/python-wheel.yml b/.github/workflows/python-wheel.yml index f659f40bd..d8268b9e2 100644 --- a/.github/workflows/python-wheel.yml +++ b/.github/workflows/python-wheel.yml @@ -10,6 +10,7 @@ on: - 'spark-shaded/**' - 'pom.xml' - 'python/**' + - '.github/workflows/python-wheel.yml' pull_request: branches: - '*' diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 9e5546677..b37541d5a 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -10,6 +10,7 @@ on: - 'spark-shaded/**' - 'pom.xml' - 'python/**' + - '.github/workflows/python.yml' pull_request: branches: - '*' @@ -19,6 +20,7 @@ on: - 'spark-shaded/**' - 'pom.xml' - 'python/**' + - '.github/workflows/python.yml' env: MAVEN_OPTS: -Dmaven.wagon.httpconnectionManager.ttlSeconds=60
