This is an automated email from the ASF dual-hosted git repository.
lhotari pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/pulsar.git
The following commit(s) were added to refs/heads/master by this push:
new a3c3f807395 [ci] Skip run flaky tests suite for cpp-only or doc-only
changes (#17551)
a3c3f807395 is described below
commit a3c3f807395b596113b4a7972483aeb6a251b504
Author: Nicolò Boschi <[email protected]>
AuthorDate: Thu Sep 8 18:19:25 2022 +0200
[ci] Skip run flaky tests suite for cpp-only or doc-only changes (#17551)
* [ci] Skip run flaky tests suite for cpp-only changes
* also ignore doc changes
* use changed_files
---
.github/workflows/pulsar-ci-flaky.yaml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/pulsar-ci-flaky.yaml
b/.github/workflows/pulsar-ci-flaky.yaml
index 800a8cf9a5b..0e49c01fbbc 100644
--- a/.github/workflows/pulsar-ci-flaky.yaml
+++ b/.github/workflows/pulsar-ci-flaky.yaml
@@ -67,7 +67,7 @@ jobs:
name: Flaky tests suite
runs-on: ubuntu-20.04
timeout-minutes: 100
- if: ${{ needs.changed_files_job.outputs.docs_only != 'true' }}
+ if: ${{ needs.changed_files_job.outputs.docs_only != 'true' &&
needs.changed_files_job.outputs.cpp_only != 'true' }}
steps:
- name: checkout
uses: actions/checkout@v2