From 3f2715e50d2622300f7e59039e4236fef735153e Mon Sep 17 00:00:00 2001 From: wanghe-fit2cloud Date: Tue, 14 Jul 2026 10:01:43 +0800 Subject: [PATCH] ci: remove disabled workflows --- .github/workflows/llm-code-review.yml | 25 ------------------------- .github/workflows/sonarcloud-scan.yml | 21 --------------------- .github/workflows/tyops-check.yml | 11 ----------- 3 files changed, 57 deletions(-) delete mode 100644 .github/workflows/llm-code-review.yml delete mode 100644 .github/workflows/sonarcloud-scan.yml delete mode 100644 .github/workflows/tyops-check.yml diff --git a/.github/workflows/llm-code-review.yml b/.github/workflows/llm-code-review.yml deleted file mode 100644 index cb145c0352c1..000000000000 --- a/.github/workflows/llm-code-review.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: LLM Code Review -permissions: - contents: read - pull-requests: write -on: - pull_request: - types: [opened, reopened, synchronize] -jobs: - llm-code-review: - runs-on: ubuntu-latest - steps: - - uses: fit2cloud/LLM-CodeReview-Action@016b651a0e3c47994f2ae630415986c89694d01a # main - env: - GITHUB_TOKEN: ${{ secrets.FIT2CLOUDRD_LLM_CODE_REVIEW_TOKEN }} - OPENAI_API_KEY: ${{ secrets.ALIYUN_LLM_API_KEY }} - LANGUAGE: English - OPENAI_API_ENDPOINT: https://dashscope.aliyuncs.com/compatible-mode/v1 - MODEL: qwen2.5-coder-3b-instruct - PROMPT: "Please check the following code differences for any irregularities, potential issues, or optimization suggestions, and provide your answers in English." - top_p: 1 - temperature: 1 - # max_tokens: 10000 - MAX_PATCH_LENGTH: 10000 - IGNORE_PATTERNS: "/node_modules,*.md,/dist,/.github" - FILE_PATTERNS: "*.java,*.go,*.py,*.vue,*.ts,*.js,*.css,*.scss,*.html" \ No newline at end of file diff --git a/.github/workflows/sonarcloud-scan.yml b/.github/workflows/sonarcloud-scan.yml deleted file mode 100644 index 396803105f8c..000000000000 --- a/.github/workflows/sonarcloud-scan.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: SonarCloud Scan -on: - push: - branches: - - dev - pull_request: - types: [opened, synchronize, reopened] -jobs: - sonarcloud: - name: SonarCloud - if: github.repository == '1Panel-dev/1Panel' - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - name: SonarCloud Scan - uses: SonarSource/sonarcloud-github-action@ba3875ecf642b2129de2b589510c81a8b53dbf4e # master - env: - GITHUB_TOKEN: ${{ secrets.GITHUBTOKEN }} - SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/tyops-check.yml b/.github/workflows/tyops-check.yml deleted file mode 100644 index 55730a74597f..000000000000 --- a/.github/workflows/tyops-check.yml +++ /dev/null @@ -1,11 +0,0 @@ -name: Typos Check -on: pull_request -jobs: - run: - name: Spell Check with Typos - runs-on: ubuntu-latest - steps: - - name: Checkout Actions Repository - uses: actions/checkout@v2 - - name: Check spelling - uses: crate-ci/typos@3bc303c295c081add5df4a4d52a1e117f2fb2dce # master \ No newline at end of file