You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by zi...@apache.org on 2022/07/07 03:10:57 UTC

[dolphinscheduler] branch dev updated: add reviewdog token to enable checkstyle (#10819)

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

zihaoxiang pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 5083e0be6a add reviewdog token to enable checkstyle (#10819)
5083e0be6a is described below

commit 5083e0be6a12e85f000d12c05dcdf0021f42c741
Author: xiangzihao <46...@qq.com>
AuthorDate: Thu Jul 7 11:10:51 2022 +0800

    add reviewdog token to enable checkstyle (#10819)
---
 .github/workflows/api-test.yml  | 2 ++
 .github/workflows/e2e.yml       | 2 ++
 .github/workflows/py-ci.yml     | 2 ++
 .github/workflows/unit-test.yml | 2 ++
 4 files changed, 8 insertions(+)

diff --git a/.github/workflows/api-test.yml b/.github/workflows/api-test.yml
index 1b761fdb6a..fa783ae5f1 100644
--- a/.github/workflows/api-test.yml
+++ b/.github/workflows/api-test.yml
@@ -54,6 +54,8 @@ jobs:
           submodules: true
       - name: Sanity Check
         uses: ./.github/actions/sanity-check
+        with:
+          token: ${{ secrets.GITHUB_TOKEN }}
       - name: Cache local Maven repository
         uses: actions/cache@v3
         with:
diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml
index d5b22169fd..d4c73848ec 100644
--- a/.github/workflows/e2e.yml
+++ b/.github/workflows/e2e.yml
@@ -54,6 +54,8 @@ jobs:
           submodules: true
       - name: Sanity Check
         uses: ./.github/actions/sanity-check
+        with:
+          token: ${{ secrets.GITHUB_TOKEN }}
       - name: Cache local Maven repository
         uses: actions/cache@v3
         with:
diff --git a/.github/workflows/py-ci.yml b/.github/workflows/py-ci.yml
index 136c27ebab..c30967fab1 100644
--- a/.github/workflows/py-ci.yml
+++ b/.github/workflows/py-ci.yml
@@ -126,6 +126,8 @@ jobs:
           submodules: true
       - name: Sanity Check
         uses: ./.github/actions/sanity-check
+        with:
+          token: ${{ secrets.GITHUB_TOKEN }}
       - name: Cache local Maven repository
         uses: actions/cache@v3
         with:
diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml
index 01146c0466..5b9b88a721 100644
--- a/.github/workflows/unit-test.yml
+++ b/.github/workflows/unit-test.yml
@@ -63,6 +63,8 @@ jobs:
           submodules: true
       - name: Sanity Check
         uses: ./.github/actions/sanity-check
+        with:
+          token: ${{ secrets.GITHUB_TOKEN }}
       - name: Set up JDK ${{ matrix.java }}
         uses: actions/setup-java@v2
         with: