You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jclouds.apache.org by na...@apache.org on 2023/02/07 17:28:15 UTC

[jclouds] branch gha updated: cleanup

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

nacx pushed a commit to branch gha
in repository https://gitbox.apache.org/repos/asf/jclouds.git


The following commit(s) were added to refs/heads/gha by this push:
     new d2f261e74c cleanup
d2f261e74c is described below

commit d2f261e74c34ddc5d39b4b8dab1e593a1dff9e22
Author: Ignasi Barrera <ig...@tetrate.io>
AuthorDate: Tue Feb 7 18:28:03 2023 +0100

    cleanup
---
 .travis.yml => .asf.yaml  | 35 ++++++++++++++++++-----------------
 .github/workflows/ci.yaml | 22 ++++++++++++++++++++--
 2 files changed, 38 insertions(+), 19 deletions(-)

diff --git a/.travis.yml b/.asf.yaml
similarity index 66%
rename from .travis.yml
rename to .asf.yaml
index fc3e35b7b4..7d4d91e8b1 100644
--- a/.travis.yml
+++ b/.asf.yaml
@@ -13,20 +13,21 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-language: java
-
-env:
-  - LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8
-
-jdk:
-  - openjdk8
-
-sudo: false
-install: skip
-
-cache:
-  directories:
-    - $HOME/.m2
-
-script: mvn clean verify checkstyle:checkstyle -B -q -Dorg.slf4j.simpleLogger.defaultLogLevel=ERROR -Pdoc,src
-
+github:
+  description: The Java Multi-Cloud Toolkit
+  homepage: https://jclouds.apache.org/
+  labels:
+    - jclouds
+    - java
+    - cloud
+  enabled_merge_buttons:
+    squash:  true
+    merge:   false
+    rebase:  false
+  protected_branches:
+    master:
+      required_status_checks:
+        contexts:
+          - build
+      required_pull_request_reviews:
+        required_approving_review_count: 1
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 5a3242bed0..284a0daeef 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -1,10 +1,28 @@
+# 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.
+
 name: CI
 
 on:
   push:
-    branches: [master, gha]
+    branches:
+      - master
+      - gha
   pull_request:
-    branches: [master]
+    branches:
+      - master
 
 jobs:
   build: