diff --git a/.github/ISSUE_TEMPLATE/bug-report-eng.yml b/.github/ISSUE_TEMPLATE/bug-report-eng.yml index bf3b4652..113cee23 100644 --- a/.github/ISSUE_TEMPLATE/bug-report-eng.yml +++ b/.github/ISSUE_TEMPLATE/bug-report-eng.yml @@ -1,7 +1,7 @@ name: BUG Report [English Form] description: Tell us what issue you get title: "[ENG][Bug]: Place your Issue Title Here" -labels: ["BUG"] +labels: ["BUG", "priority:none"] body: - type: markdown attributes: diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 3f8b9c49..61115ec8 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -1,7 +1,7 @@ name: 问题反馈 description: 告诉我们你的问题 title: "[Bug]: 在这里填写一个合适的标题" -labels: ["BUG"] +labels: ["BUG", "priority:none"] body: - type: markdown attributes: diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml index 3eaa04d1..4eb97bac 100644 --- a/.github/ISSUE_TEMPLATE/feature-request.yml +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -1,7 +1,7 @@ name: Feature Request 功能请求 description: Tell us about your thought 告诉我们你的想法 title: "[Feat]: Place your title here 在这里填写一个合适的标题" -labels: ["功能"] +labels: ["功能", "priority:none"] assignees: - Lightczx body: diff --git a/.github/workflows/qodana_code_quality.yml b/.github/workflows/qodana_code_quality.yml deleted file mode 100644 index 27deba67..00000000 --- a/.github/workflows/qodana_code_quality.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Qodana -on: - workflow_dispatch: - pull_request: - push: - branches: - - main - - develop - paths-ignore: - - '**.md' - - '**.yml' - - '**.resx' - -jobs: - qodana: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - name: 'Qodana Scan' - uses: JetBrains/qodana-action@v2023.2 - with: - pr-mode: false - env: - QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} \ No newline at end of file diff --git a/qodana.yaml b/qodana.yaml deleted file mode 100644 index f1e0d017..00000000 --- a/qodana.yaml +++ /dev/null @@ -1,33 +0,0 @@ -#-------------------------------------------------------------------------------# -# Qodana analysis is configured by qodana.yaml file # -# https://www.jetbrains.com/help/qodana/qodana-yaml.html # -#-------------------------------------------------------------------------------# -version: "1.0" - -#Specify inspection profile for code analysis -profile: - name: qodana.starter - -#Enable inspections -#include: -# - name: - -#Disable inspections -exclude: - - name: Test - paths: - - Snap.Hutao.Test - - Snap.Hutao.SourceGeneration - - name: All - paths: - - Snap.Hutao.SourceGeneration - - Snap.Hutao.Test -#Execute shell command before Qodana execution (Applied in CI/CD pipeline) -#bootstrap: sh ./prepare-qodana.sh - -#Install IDE plugins before Qodana execution (Applied in CI/CD pipeline) -#plugins: -# - id: #(plugin id can be found at https://plugins.jetbrains.com) - -#Specify Qodana linter for analysis (Applied in CI/CD pipeline) -linter: jetbrains/qodana-dotnet:2023.2-eap