You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by to...@apache.org on 2021/06/11 00:54:00 UTC

[apisix-ingress-controller] branch master updated: ci: do not run workflows for draft PRs (#542)

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

tokers pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git


The following commit(s) were added to refs/heads/master by this push:
     new f9df546  ci: do not run workflows for draft PRs (#542)
f9df546 is described below

commit f9df5469aa032cd05955f93c59a32883db542c02
Author: guoqqqi <72...@users.noreply.github.com>
AuthorDate: Fri Jun 11 08:53:54 2021 +0800

    ci: do not run workflows for draft PRs (#542)
---
 .github/workflows/codeql-analysis.yml | 1 +
 .github/workflows/e2e-test-ci.yml     | 3 ++-
 .github/workflows/golangci-lint.yml   | 1 +
 .github/workflows/license-checker.yml | 1 +
 .github/workflows/lint-checker.yml    | 1 +
 .github/workflows/spell-checker.yml   | 1 +
 .github/workflows/unit-test-ci.yml    | 1 +
 .github/workflows/verify-codegen.yml  | 1 +
 8 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index 268758f..d69c38a 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -22,6 +22,7 @@ on:
   push:
     branches: [ master ]
   pull_request:
+    type: [review_requested, ready_for_review]
     # The branches below must be a subset of the branches above
     branches: [ master ]
   schedule:
diff --git a/.github/workflows/e2e-test-ci.yml b/.github/workflows/e2e-test-ci.yml
index 7d14a61..a05bc85 100644
--- a/.github/workflows/e2e-test-ci.yml
+++ b/.github/workflows/e2e-test-ci.yml
@@ -25,6 +25,7 @@ on:
   pull_request:
     branches:
       - master
+    type: [review_requested, ready_for_review]
 
 concurrency:
   group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
@@ -78,7 +79,7 @@ jobs:
       - name: Setup Go Env
         uses: actions/setup-go@v1
         with:
-          go-version: '1.13'
+          go-version: "1.13"
       - name: Install ginkgo
         run: |
           go get -u github.com/onsi/ginkgo/ginkgo
diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml
index b8ddc38..e7a6727 100644
--- a/.github/workflows/golangci-lint.yml
+++ b/.github/workflows/golangci-lint.yml
@@ -25,6 +25,7 @@ on:
   pull_request:
     branches:
       - master
+    type: [review_requested, ready_for_review]
 
 jobs:
   changes:
diff --git a/.github/workflows/license-checker.yml b/.github/workflows/license-checker.yml
index 1093131..61c93f4 100644
--- a/.github/workflows/license-checker.yml
+++ b/.github/workflows/license-checker.yml
@@ -25,6 +25,7 @@ on:
   pull_request:
     branches:
       - master
+    type: [review_requested, ready_for_review]
 
 jobs:
   check-license:
diff --git a/.github/workflows/lint-checker.yml b/.github/workflows/lint-checker.yml
index 5264a85..8ae2381 100644
--- a/.github/workflows/lint-checker.yml
+++ b/.github/workflows/lint-checker.yml
@@ -25,6 +25,7 @@ on:
   pull_request:
     branches:
       - master
+    type: [review_requested, ready_for_review]
 jobs:
   changes:
     runs-on: ubuntu-latest
diff --git a/.github/workflows/spell-checker.yml b/.github/workflows/spell-checker.yml
index a536334..ef1d159 100644
--- a/.github/workflows/spell-checker.yml
+++ b/.github/workflows/spell-checker.yml
@@ -22,6 +22,7 @@ on:
     branches: [ master ]
   pull_request:
     branches: [ master ]
+    type: [review_requested, ready_for_review]
 jobs:
   misspell:
     name: runner / misspell
diff --git a/.github/workflows/unit-test-ci.yml b/.github/workflows/unit-test-ci.yml
index 5e4f952..3ec4300 100644
--- a/.github/workflows/unit-test-ci.yml
+++ b/.github/workflows/unit-test-ci.yml
@@ -25,6 +25,7 @@ on:
   pull_request:
     branches:
       - master
+    type: [review_requested, ready_for_review]
 jobs:
   changes:
     runs-on: ubuntu-latest
diff --git a/.github/workflows/verify-codegen.yml b/.github/workflows/verify-codegen.yml
index 7fdb706..4e58179 100644
--- a/.github/workflows/verify-codegen.yml
+++ b/.github/workflows/verify-codegen.yml
@@ -25,6 +25,7 @@ on:
   pull_request:
     branches:
       - master
+    type: [review_requested, ready_for_review]
 jobs:
   changes:
     runs-on: ubuntu-latest