From 29efc61d6835ccc10d1c1d0d028ccbb8d2e16518 Mon Sep 17 00:00:00 2001 From: yihuang Date: Tue, 12 Mar 2024 14:45:18 +0800 Subject: [PATCH] remove super-linter for now --- .github/workflows/super-linter.yml | 44 ------------------------------ 1 file changed, 44 deletions(-) delete mode 100644 .github/workflows/super-linter.yml diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml deleted file mode 100644 index 71311d885d..0000000000 --- a/.github/workflows/super-linter.yml +++ /dev/null @@ -1,44 +0,0 @@ -# This workflow executes several linters on changed files based on languages used in your code base whenever -# you push a code or open a pull request. -# -# You can adjust the behavior by modifying this file. -# For more information, see: -# https://github.com/github/super-linter ---- -name: Lint Code Base - -on: - push: - branches: ["develop"] - pull_request: - branches: ["develop"] -jobs: - run-lint: - runs-on: ubuntu-latest - - permissions: - contents: read - packages: read - # To report GitHub Actions status checks - statuses: write - - steps: - - name: Checkout code - uses: actions/checkout@v3 - with: - # Full git history is needed to get a proper list of changed files within `super-linter` - fetch-depth: 0 - - - name: Lint Code Base - uses: super-linter/super-linter@v6 - env: - LINTER_RULES_PATH: / - YAML_CONFIG_FILE: .yamllint - VALIDATE_ALL_CODEBASE: false - MARKDOWN_CONFIG_FILE: .markdownlint.yml - PROTOBUF_CONFIG_FILE: .protolint.yml - VALIDATE_NATURAL_LANGUAGE: false - VALIDATE_OPENAPI: false - VALIDATE_JSCPD: false - VALIDATE_GO: false - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}