This is an automated email from the ASF dual-hosted git repository. github-merge-queue[bot] pushed a commit to branch gh-readonly-queue/main/pr-7082-42493c6d8efa49d6dbef7121d1d78cf3d6036a7c in repository https://gitbox.apache.org/repos/asf/texera.git
commit 647093a3f56d6cbf16a15f976a9002986ba96759 Author: Yicong Huang <[email protected]> AuthorDate: Wed Jul 29 19:41:16 2026 -0400 chore(ci): remove ci-enable/** push trigger from CI workflows (#7082) ### What changes were proposed in this PR? Removes the `ci-enable/**` entry from the `push.branches` list in two CI workflows: - `.github/workflows/required-checks.yml` (Required Checks) - `.github/workflows/check-header.yml` (Release Auditing) The `ci-enable/*` branch namespace was a manual escape hatch for triggering CI on a scratch branch without opening a PR. It is no longer used — CI runs through PRs and the merge queue — so the trigger is dropped. Both workflows still run on `main`, PRs, and the merge group (Required Checks additionally on `release/**`). ### Any related issues, documentation, discussions? Closes #7081 ### How was this PR tested? - Diff is trigger-only; no job logic changed. - Confirmed the remaining `push`/`pull_request`/`merge_group` triggers still cover main, PRs, and the merge queue. ### Was this PR authored or co-authored using generative AI tooling? Generated-by: Claude Code (Claude Opus 4.8) Co-authored-by: Claude Opus 4.8 (1M context) <[email protected]> --- .github/workflows/check-header.yml | 1 - .github/workflows/required-checks.yml | 1 - 2 files changed, 2 deletions(-) diff --git a/.github/workflows/check-header.yml b/.github/workflows/check-header.yml index 56164090f6..003747c6e1 100644 --- a/.github/workflows/check-header.yml +++ b/.github/workflows/check-header.yml @@ -19,7 +19,6 @@ name: Release Auditing on: push: branches: - - 'ci-enable/**' - 'main' pull_request: merge_group: diff --git a/.github/workflows/required-checks.yml b/.github/workflows/required-checks.yml index ae47606443..1db8a52668 100644 --- a/.github/workflows/required-checks.yml +++ b/.github/workflows/required-checks.yml @@ -20,7 +20,6 @@ name: Required Checks on: push: branches: - - 'ci-enable/**' - 'main' - 'release/**' pull_request:
