From b03b3555a555fc5d1c27c2b2f7eb8a2e1a1ad34f Mon Sep 17 00:00:00 2001 From: kuchune <66342239+kuchune@users.noreply.github.com> Date: Tue, 9 Jul 2024 15:08:23 +0800 Subject: [PATCH] chore(CI): update debian check workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit update debian check workflow log: 优化debian检查工作流 --- .github/workflows/call-api-check.yml | 13 +++++++++++++ .github/workflows/call-debian-check.yml | 13 +++++++++++++ .github/workflows/call-static-check.yml | 13 +++++++++++++ 3 files changed, 39 insertions(+) create mode 100644 .github/workflows/call-api-check.yml create mode 100644 .github/workflows/call-debian-check.yml create mode 100644 .github/workflows/call-static-check.yml diff --git a/.github/workflows/call-api-check.yml b/.github/workflows/call-api-check.yml new file mode 100644 index 0000000000..3f9cde70bf --- /dev/null +++ b/.github/workflows/call-api-check.yml @@ -0,0 +1,13 @@ +name: apiCheck +on: + pull_request_target: + types: [opened, synchronize, reopened] + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + api-check: + uses: linuxdeepin/.github/.github/workflows/api-check.yml@master + secrets: inherit \ No newline at end of file diff --git a/.github/workflows/call-debian-check.yml b/.github/workflows/call-debian-check.yml new file mode 100644 index 0000000000..a35159d8ca --- /dev/null +++ b/.github/workflows/call-debian-check.yml @@ -0,0 +1,13 @@ +name: debianCheck +on: + pull_request_target: + types: [opened, synchronize, reopened] + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + debian-check: + uses: linuxdeepin/.github/.github/workflows/debian-check.yml@master + secrets: inherit \ No newline at end of file diff --git a/.github/workflows/call-static-check.yml b/.github/workflows/call-static-check.yml new file mode 100644 index 0000000000..4ed868314c --- /dev/null +++ b/.github/workflows/call-static-check.yml @@ -0,0 +1,13 @@ +name: staticCheck +on: + pull_request_target: + types: [opened, synchronize, reopened] + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + static-check: + uses: linuxdeepin/.github/.github/workflows/static-check.yml@master + secrets: inherit \ No newline at end of file