my-ship-it commented on code in PR #735: URL: https://github.com/apache/cloudberry/pull/735#discussion_r1860411888
########## .github/workflows/build-cloudberry.yml: ########## @@ -17,102 +17,86 @@ # permissions and limitations under the License. # # -------------------------------------------------------------------- +# GitHub Actions Workflow: Apache Cloudberry Build Pipeline +# -------------------------------------------------------------------- +# Description: # -# GitHub Actions Workflow: Apache Cloudberry Build -# Description: Builds, tests, and packages Apache Cloudberry on Rocky Linux 9 +# This workflow builds, tests, and packages Apache Cloudberry on +# Rocky Linux 9. It ensures artifact integrity, performs installation +# tests, validates key operations, and provides detailed test reports, +# including handling for ignored test cases. # -# Workflow Structure: -# 1. Skip Check: -# - Evaluates CI skip flags in commit messages or PR titles -# - Supports [skip ci], [ci skip], [no ci] -# - Successfully completes all checks if skip detected +# Workflow Overview: +# 1. **Check Skip**: +# - Dynamically determines if the workflow should run based on CI skip flags. +# - Evaluates the following fields for skip flags: +# - **Pull Request Events**: PR title and PR body. +# - **Push Events**: Commit message of the head commit. +# - Supports the following skip patterns (case-insensitive): +# - `[skip ci]` Review Comment: Thanks for supporting this cool feature. One question, code modification and final merging require running through CI at least once, but submitting code during review can skip CI, right? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
