This is an automated email from the ASF dual-hosted git repository. tqchen pushed a commit to branch dev in repository https://gitbox.apache.org/repos/asf/tvm-ffi.git
commit 306c8d0d2c591954d41ccffabfd4b7fb22d315b1 Author: tqchen <[email protected]> AuthorDate: Sat Sep 13 18:27:55 2025 -0400 [CI] Setup asf yaml This PR setup asf yaml --- .asf.yaml | 38 ++++++++++++++++++++++++++++++++++++++ .github/workflows/ci_test.yml | 1 + 2 files changed, 39 insertions(+) diff --git a/.asf.yaml b/.asf.yaml new file mode 100644 index 0000000..fe05d01 --- /dev/null +++ b/.asf.yaml @@ -0,0 +1,38 @@ +# 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. + +github: + description: "TVM FFI" + homepage: https://tvm.apache.org/ffi + labels: + - ffi + - gpu + - machine-learning + + protected_branches: + # NOTE: when updating the config + # make sure to first update the branch protection name + # in a separate branch(e.g. dev), confirm things works + # before changing it to main + dev: + # note: do not set status check for now before we setup skip ci + required_pull_request_reviews: + required_approving_review_count: 1 + +notifications: + commits: [email protected] + issues: [email protected] diff --git a/.github/workflows/ci_test.yml b/.github/workflows/ci_test.yml index 8640b57..1bed651 100644 --- a/.github/workflows/ci_test.yml +++ b/.github/workflows/ci_test.yml @@ -68,6 +68,7 @@ jobs: run: | tests/scripts/task_lint.sh + test: needs: [prepare] if: >
