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-website.git
The following commit(s) were added to refs/heads/master by this push:
new 5be1d18 [SYSTEMDS-2910] Add .asf.yaml to control Github settings
5be1d18 is described below
commit 5be1d18b0ca6cc50bfccdd942d06af154fd5cab6
Author: Janardhan Pulivarthi <[email protected]>
AuthorDate: Wed Apr 21 00:22:02 2021 +0530
[SYSTEMDS-2910] Add .asf.yaml to control Github settings
---
.asf.yml | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 53 insertions(+)
diff --git a/.asf.yml b/.asf.yml
new file mode 100644
index 0000000..402a7df
--- /dev/null
+++ b/.asf.yml
@@ -0,0 +1,53 @@
+#-------------------------------------------------------------
+#
+# 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 Website"
+ homepage: https://systemds.apache.org/
+ labels:
+ - systemds
+
+ 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