This is an automated email from the ASF dual-hosted git repository.

janardhan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/systemds.git


The following commit(s) were added to refs/heads/master by this push:
     new 728e009  [SYSTEMDS-2910] Add .asf.yaml to control Github settings
728e009 is described below

commit 728e009985a576929cc0bea1b3f01fec6b696664
Author: Janardhan Pulivarthi <[email protected]>
AuthorDate: Tue Apr 20 21:38:31 2021 +0530

    [SYSTEMDS-2910] Add .asf.yaml to control Github settings
    
    * Updates the GitHub project metadata - description, labels
    * Disables merge commit option, according to our commit style guide
       at  CONTRIBUTING.md
    * .asf.yaml file provides expressive syntax to configure fine grained
      settings for hosting asf-site
    
    Closes #1233.
---
 .asf.yaml | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 55 insertions(+)

diff --git a/.asf.yaml b/.asf.yaml
new file mode 100644
index 0000000..315caeb
--- /dev/null
+++ b/.asf.yaml
@@ -0,0 +1,55 @@
+#-------------------------------------------------------------
+#
+# 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.
+#
+#-------------------------------------------------------------
+
+# Document for .asf.yml file is available at
+# https://cwiki.apache.org/confluence/display/INFRA/Git+-+.asf.yaml+features
+
+github:
+  description: "Apache SystemDS - A versatile system for the end-to-end data 
science lifecycle"
+  homepage: https://systemds.apache.org/
+  labels:
+    - systemds
+    - java
+    - dml
+    
+  features:
+    # Enable issues management
+    issues: false
+    # Enable projects for project management boards
+    projects: false
+    # Enable wiki for documentation
+    wiki: false
+    
+  # Choose the type of commit merge in the PR UI
+  enabled_merge_buttons:
+    # Enable squash button
+    squash: true
+    # Enable merge button
+    merge: false
+    # Enable rebase button
+    rebase: true
+    
+
+  protected_branches:
+    master:
+      # Do not allow merge commits
+      # by allowing linear history
+      required_linear_history: true

Reply via email to