From 79848c611355a74eb26909fbfbbcade27ea002c4 Mon Sep 17 00:00:00 2001 From: AstroHan Date: Thu, 20 Aug 2026 01:52:34 +0800 Subject: [PATCH 1/2] chore: add .asf.yaml for ASF infrastructure self-service ASF committers have no GitHub admin UI, so .asf.yaml is the only self-service path to repository settings. main currently has no branch protection at all and the repository carries no topics, so declare both here, along with the merge policy and Dependabot alerts that are already in effect. Require the test check. Since #3261 landed, ci.yml runs a single test job on every pull request covering lint, format, build, tsc, knip, the selected workspace suites, e2e and Storybook, which makes it a complete and stable required context. Validated through the two-pass parse asfyaml actually performs: dirty_load, then as_yaml() and a schema-checked reparse. A folded description scalar is sensitive to that round trip. A comment indented at the same level is pulled into the scalar and silently appended to the repository description, and PyYAML does not reproduce this. Generated-by: Claude Code --- .asf.yaml | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 .asf.yaml diff --git a/.asf.yaml b/.asf.yaml new file mode 100644 index 0000000000..6c185a54c3 --- /dev/null +++ b/.asf.yaml @@ -0,0 +1,64 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. + +# Reference: https://github.com/apache/infrastructure-asfyaml + +github: + description: >- + Apache Maka (Incubating) is a local-first AI agent workspace. + Model messages, tool calls, tool results, permission decisions, + and termination events are recorded as an append-only log. + labels: + - ai + - ai-agent + - agent-runtime + - local-first + - llm + - tool-use + - event-sourcing + - desktop + - electron + - typescript + - cli + - apache + - maka + features: + issues: true + wiki: false + projects: true + discussions: false + enabled_merge_buttons: + squash: true + merge: false + rebase: false + pull_requests: + del_branch_on_merge: true + dependabot_alerts: true + protected_branches: + main: + required_pull_request_reviews: + dismiss_stale_reviews: true + required_approving_review_count: 1 + required_status_checks: + strict: false + # test is the single job in .github/workflows/ci.yml, covering lint, + # format, build, tsc, knip, the selected workspace suites, e2e and + # Storybook. Renaming it there, or adding a paths filter that stops + # ci.yml from running, freezes every pull request: the check never + # reports and no committer can override it. + contexts: + - test From c8c34abb96909837a7230e9cd6a7daead33efdd9 Mon Sep 17 00:00:00 2001 From: tison Date: Thu, 20 Aug 2026 13:33:05 +0800 Subject: [PATCH 2/2] Change project and discussion settings in .asf.yaml Updated project and discussion feature flags in .asf.yaml. --- .asf.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.asf.yaml b/.asf.yaml index 6c185a54c3..820a5b1267 100644 --- a/.asf.yaml +++ b/.asf.yaml @@ -39,8 +39,8 @@ github: features: issues: true wiki: false - projects: true - discussions: false + projects: false + discussions: true enabled_merge_buttons: squash: true merge: false @@ -62,3 +62,9 @@ github: # reports and no committer can override it. contexts: - test + +notifications: + commits: commits@maka.apache.org + discussions: dev@maka.apache.org + issues: commits@maka.apache.org + pullrequests: commits@maka.apache.org