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-5290-953e2c4b775f66ebbbb3a6464aa896dcb6134d65 in repository https://gitbox.apache.org/repos/asf/texera.git
commit b90e76d04a44413d70017e64c17204a92d357dd4 Author: Yicong Huang <[email protected]> AuthorDate: Fri May 29 21:28:59 2026 -0700 fix(asf): restore root bypass team (#5290) ### What changes were proposed in this PR? Restore the ASF `root` team in `.asf.yaml` branch protection bypasses while keeping `texera-committers` from #5287. Quote both team names for consistency. ### Any related issues, documentation, discussions? Closes #5289 Follow-up to #5287 ### How was this PR tested? ```bash ruby -e 'require "yaml"; YAML.load_file(".asf.yaml"); puts "YAML OK"' git diff --check ``` ### Was this PR authored or co-authored using generative AI tooling? Yes. Used OpenAI Codex. --- .asf.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.asf.yaml b/.asf.yaml index f8a9262d63..0355a0d669 100644 --- a/.asf.yaml +++ b/.asf.yaml @@ -114,7 +114,8 @@ github: - "rel/*" excludes: [] bypass_teams: - - texera-committers + - "root" + - "texera-committers" restrict_deletion: true restrict_force_push: true notifications:
