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-5139-538ae1d5cb9027b34b29e99d33c2c286970b29b1 in repository https://gitbox.apache.org/repos/asf/texera.git
commit 4c0e91fa6a585dd4bcaa4aeaf42d5342ee5d13c4 Author: Yicong Huang <[email protected]> AuthorDate: Wed May 20 22:17:29 2026 -0700 fix: enable ASF nextgen config (#5139) ### What changes were proposed in this PR? Enable the ASF `.asf.yaml` next-generation parser by adding `meta.nextgen: true`. This lets ASF Infra apply repository feature settings that are already present in this file, including `github.features.discussions: true`. ### Any related issues, documentation, discussions? Related mailing list discussion: https://lists.apache.org/thread/hso97tz18zd6s9zpbr1gfj2o7m5rcr92 ASF Infra documentation: - https://infra.apache.org/blog/newsletter_02_25.html - https://github.com/apache/infrastructure-asfyaml/tree/ng-parser?tab=readme-ov-file#repository-features ### How was this PR tested? ```bash ruby -e 'require "yaml"; YAML.load_file(".asf.yaml"); puts "YAML OK"' gh api repos/apache/texera --jq '{has_discussions:.has_discussions, default_branch:.default_branch, full_name:.full_name}' ``` The YAML parses successfully. The GitHub API check currently reports `has_discussions: false`, confirming the repository feature still needs ASF Infra to apply the updated `.asf.yaml` config after merge. ### Was this PR authored or co-authored using generative AI tooling? Generated-by: OpenAI Codex --- .asf.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.asf.yaml b/.asf.yaml index edd342b858..902cdce457 100644 --- a/.asf.yaml +++ b/.asf.yaml @@ -19,6 +19,7 @@ meta: environment: github_rulesets + nextgen: true github: description: "Human-AI Collaborative Data Science Using Visual Workflows"
