You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@curator.apache.org by ti...@apache.org on 2023/04/12 14:33:16 UTC

[curator] branch master updated (0095a273 -> a72fe517)

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

tison pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/curator.git


    from 0095a273 CURATOR-668. Modify blockUntilConnected method annotation (#457)
     new 684e8731 Disable fail-fast to avoid heavy rerun
     new a72fe517 Disable force required to allow push release commits

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .asf.yaml                | 7 +------
 .github/workflows/ci.yml | 5 +++--
 2 files changed, 4 insertions(+), 8 deletions(-)


[curator] 02/02: Disable force required to allow push release commits

Posted by ti...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit a72fe5173881fa399546a459b2946a749568112b
Author: tison <wa...@gmail.com>
AuthorDate: Wed Apr 12 21:18:23 2023 +0800

    Disable force required to allow push release commits
    
    Since we do not use release branch pattern, we need this commit
    otherwise the process is not working.
    
    Signed-off-by: tison <wa...@gmail.com>
---
 .asf.yaml | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/.asf.yaml b/.asf.yaml
index 54e12d52..953d24ef 100644
--- a/.asf.yaml
+++ b/.asf.yaml
@@ -33,12 +33,7 @@ github:
     merge:   false
     rebase:  true
   protected_branches:
-    master:
-      required_status_checks:
-        strict: false
-        contexts:
-          - Required
-      required_signatures: false
+    master: {}
 
 notifications:
   commits:      commits@curator.apache.org


[curator] 01/02: Disable fail-fast to avoid heavy rerun

Posted by ti...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 684e873166b2f6ae677c14e25c55590adab09a28
Author: tison <wa...@gmail.com>
AuthorDate: Wed Apr 12 21:16:03 2023 +0800

    Disable fail-fast to avoid heavy rerun
    
    Signed-off-by: tison <wa...@gmail.com>
---
 .github/workflows/ci.yml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 06f80891..905ce9ca 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -18,9 +18,9 @@
 name: CI
 on:
   push:
+    branches: [master]
   pull_request:
-    branches:
-      - master
+    branches: [master]
 
 env:
   MAVEN_OPTS: -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.http.retryHandler.class=standard -Dmaven.wagon.http.retryHandler.count=3
@@ -39,6 +39,7 @@ jobs:
     runs-on: ubuntu-latest
     timeout-minutes: 120
     strategy:
+      fail-fast: false
       matrix:
         java: [8, 11]
     steps: