mirror of
https://jihulab.com/DGP-Studio/Snap.Hutao.git
synced 2025-11-19 21:02:53 +08:00
Update .github configurations
This commit is contained in:
2
.github/ISSUE_TEMPLATE/bug-report-eng.yml
vendored
2
.github/ISSUE_TEMPLATE/bug-report-eng.yml
vendored
@@ -1,7 +1,7 @@
|
|||||||
name: BUG Report [English Form]
|
name: BUG Report [English Form]
|
||||||
description: Tell us what issue you get
|
description: Tell us what issue you get
|
||||||
title: "[ENG][Bug]: Place your Issue Title Here"
|
title: "[ENG][Bug]: Place your Issue Title Here"
|
||||||
labels: ["BUG"]
|
labels: ["BUG", "priority:none"]
|
||||||
body:
|
body:
|
||||||
- type: markdown
|
- type: markdown
|
||||||
attributes:
|
attributes:
|
||||||
|
|||||||
2
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
2
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
@@ -1,7 +1,7 @@
|
|||||||
name: 问题反馈
|
name: 问题反馈
|
||||||
description: 告诉我们你的问题
|
description: 告诉我们你的问题
|
||||||
title: "[Bug]: 在这里填写一个合适的标题"
|
title: "[Bug]: 在这里填写一个合适的标题"
|
||||||
labels: ["BUG"]
|
labels: ["BUG", "priority:none"]
|
||||||
body:
|
body:
|
||||||
- type: markdown
|
- type: markdown
|
||||||
attributes:
|
attributes:
|
||||||
|
|||||||
2
.github/ISSUE_TEMPLATE/feature-request.yml
vendored
2
.github/ISSUE_TEMPLATE/feature-request.yml
vendored
@@ -1,7 +1,7 @@
|
|||||||
name: Feature Request 功能请求
|
name: Feature Request 功能请求
|
||||||
description: Tell us about your thought 告诉我们你的想法
|
description: Tell us about your thought 告诉我们你的想法
|
||||||
title: "[Feat]: Place your title here 在这里填写一个合适的标题"
|
title: "[Feat]: Place your title here 在这里填写一个合适的标题"
|
||||||
labels: ["功能"]
|
labels: ["功能", "priority:none"]
|
||||||
assignees:
|
assignees:
|
||||||
- Lightczx
|
- Lightczx
|
||||||
body:
|
body:
|
||||||
|
|||||||
26
.github/workflows/qodana_code_quality.yml
vendored
26
.github/workflows/qodana_code_quality.yml
vendored
@@ -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 }}
|
|
||||||
33
qodana.yaml
33
qodana.yaml
@@ -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: <SomeEnabledInspectionId>
|
|
||||||
|
|
||||||
#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> #(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
|
|
||||||
Reference in New Issue
Block a user