diff --git a/.github/workflows/call-api-check.yml b/.github/workflows/call-api-check.yml
new file mode 100644
index 00000000..3f9cde70
--- /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 00000000..a35159d8
--- /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 00000000..4ed86831
--- /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