This is an automated email from the ASF dual-hosted git repository.
hellostephen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 56f7945ca23 [fix](ci) skip check coverage (#53976)
56f7945ca23 is described below
commit 56f7945ca233076518baa86f4a9825df5686b5e7
Author: Dongyang Li <[email protected]>
AuthorDate: Mon Jul 28 17:56:30 2025 +0800
[fix](ci) skip check coverage (#53976)
---
.github/workflows/comment-to-trigger-teamcity.yml | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/comment-to-trigger-teamcity.yml
b/.github/workflows/comment-to-trigger-teamcity.yml
index 51f88c27f4a..337d6c1f92e 100644
--- a/.github/workflows/comment-to-trigger-teamcity.yml
+++ b/.github/workflows/comment-to-trigger-teamcity.yml
@@ -30,7 +30,7 @@ jobs:
check-comment-if-need-to-trigger-teamcity:
# This job only runs for pull request comments, and comment body contains
'run'
- if: ${{ github.event.issue.pull_request &&
(contains(github.event.comment.body, 'run') ||
contains(github.event.comment.body, 'skip buildall')) }}
+ if: ${{ github.event.issue.pull_request &&
(contains(github.event.comment.body, 'run') ||
contains(github.event.comment.body, 'skip buildall') ||
contains(github.event.comment.body, 'skip check_coverage')) }}
runs-on: ubuntu-latest
env:
@@ -63,7 +63,9 @@ jobs:
"${COMMENT_BODY}" == *'run performance'* ]]; then
echo "comment_trigger=true" | tee -a "$GITHUB_OUTPUT"
echo "comment_skip=false" | tee -a "$GITHUB_OUTPUT"
+ echo "comment_skip_coverage=false" | tee -a "$GITHUB_OUTPUT"
elif [[ "${COMMENT_BODY}" == *'skip buildall'* ]]; then
+ echo "comment_skip_coverage=false" | tee -a "$GITHUB_OUTPUT"
if [[ "${COMMENT_USER_ID}" == '27881198' ||
"${COMMENT_USER_ID}" == '37901441' ]]; then
echo "comment_trigger=false" | tee -a "$GITHUB_OUTPUT"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]