diff --git a/.github/workflows/call-debian-check.yml b/.github/workflows/call-debian-check.yml new file mode 100644 index 000000000..151971d79 --- /dev/null +++ b/.github/workflows/call-debian-check.yml @@ -0,0 +1,20 @@ +name: debianCheck +on: pull_request + # pull_request: + # paths-ignore: + # - ".github/workflows/**" +permissions: + pull-requests: write + contents: read + checks: read + + +jobs: + debian-check: + uses: kuchune/.github/.github/workflows/debian-check.yml@master + secrets: + access_token: ${{ secrets.GITHUB_TOKEN }} + with: + job_name: ${{ github.job }} + repository: ${{ github.repository }} + exclude_files: "js,vue,ts,less,html,go,css,json,txt,doc,jpg,png,svg,py,yml,md" \ 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 000000000..38f369eb5 --- /dev/null +++ b/.github/workflows/call-static-check.yml @@ -0,0 +1,16 @@ +name: staticCheck +on: pull_request + +permissions: + contents: read + pull-requests: read + checks: write + +jobs: + static-check: + uses: kuchune/.github/.github/workflows/static-check.yml@master + secrets: + access_token: ${{ secrets.GITHUB_TOKEN }} + with: + repository: ${{ github.repository }} +