-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #81 from AIO-GAME/1.x
1.x
- Loading branch information
Showing
334 changed files
with
17,187 additions
and
6,756 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#-------------------------------------------------------------------------------# | ||
# Qodana analysis is configured by qodana.yaml file # | ||
# https://www.jetbrains.com/help/qodana/qodana-yaml.html # | ||
#-------------------------------------------------------------------------------# | ||
version: "1.0" | ||
linter: jetbrains/qodana-dotnet:2023.3 | ||
include: | ||
- name: CheckDependencyLicenses | ||
paths: | ||
- "Editor" | ||
- "Editor.GUI.CLI" | ||
- "Runtime" | ||
- "Plugins" | ||
|
||
#Specify IDE code to run analysis without container (Applied in CI/CD pipeline) | ||
ide: QDNET | ||
|
||
#Specify inspection profile for code analysis | ||
profile: | ||
name: qodana.starter | ||
|
||
#Enable inspections | ||
#include: | ||
# - name: <SomeEnabledInspectionId> | ||
|
||
#Disable inspections | ||
exclude: | ||
- name: All | ||
paths: | ||
- "Tools~" | ||
- "Resources" | ||
- "*.meta" | ||
- "*.asmdef" | ||
- "*.tt" | ||
|
||
#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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: 🧬 Code Optimize Qodana | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- main | ||
push: | ||
tags: # 当生成指定标签时触发 | ||
- '*.*.*' | ||
branches: # Specify your branches here | ||
- main | ||
- '1.*' | ||
jobs: | ||
qodana: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
checks: write | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.event.pull_request.head.sha }} # 检查实际的pull请求提交,而不是合并提交 | ||
fetch-depth: 0 # 拉请求分析需要完整的历史记录 | ||
- name: 🧬 Qodana Scan | ||
uses: JetBrains/[email protected] | ||
with: | ||
pr-mode: false | ||
args: --property=qodana.net.solution=ALL.sln | ||
env: | ||
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# Copyright (C) Markus Franz Xaver Johannes Oberhumer | ||
|
||
# see https://docs.github.com/en/actions/managing-issues-and-pull-requests/closing-inactive-issues | ||
# see https://github.com/actions/stale | ||
|
||
# Automatically closing issues is far from perfect, but then we only | ||
# have limited resources and this approach favors issues that people | ||
# actually care about. | ||
# | ||
# also see: | ||
# "Should I Stale or Should I Close? An Analysis of a Bot that Closes | ||
# Abandoned Issues and Pull Request". | ||
# https://igorwiese.com/images/papers/Paper_BotSE_19.pdf | ||
|
||
name: 🧪 GitHub - Close stale issues | ||
on: | ||
schedule: [ cron: "50 0 * * 1" ] # run weekly Monday 00:50 UTC | ||
workflow_dispatch: | ||
jobs: | ||
job-close-stale-issues: | ||
if: github.repository_owner == 'upx' && github.repository == 'upx/upx' | ||
name: Close stale issues | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
steps: | ||
- uses: actions/stale@v9 | ||
with: | ||
operations-per-run: 300 | ||
exempt-all-milestones: true | ||
exempt-issue-labels: 'blocker,bug,enhancement,help wanted,regression' | ||
days-before-stale: 90 | ||
days-before-close: 30 | ||
stale-issue-message: | | ||
### English | ||
This issue is stale because it has been open for 90 days with no activity. | ||
Please remove the stale label or add a comment or this issue will be closed in 30 days. | ||
### 中文 | ||
此问题已经打开了90天没有活动,因此已经过时。 | ||
请删除过时标签或添加评论,否则此问题将在30天内关闭。 | ||
stale-pr-message: | | ||
### English | ||
This PR is stale because it has been open for 90 days with no activity. | ||
Please remove the stale label or add a comment or this PR will be closed in 30 days. | ||
### 中文 | ||
此拉取请求已经打开了90天没有活动,因此已经过时。 | ||
请删除过时标签或添加评论,否则此拉取请求将在30天内关闭。 | ||
close-issue-message: | | ||
### English | ||
This issue was closed because it has been stale for 30 days with no activity. Please feel free to reopen. | ||
### 中文 | ||
此问题已经过时30天没有活动,因此已经关闭。请随时重新打开。 | ||
close-pr-message: | | ||
### English | ||
This PR was closed because it has been stale for 30 days with no activity. Please feel free to reopen. | ||
### 中文 | ||
此拉取请求已经过时30天没有活动,因此已经关闭。请随时重新打开. | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,8 @@ | ||
name: 🧪 CI Generate a list of contributors | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
name: Generate a list of contributors | ||
|
||
jobs: | ||
contrib-readme-en-job: | ||
runs-on: ubuntu-latest | ||
|
@@ -15,9 +13,9 @@ jobs: | |
with: | ||
image_size: 64 | ||
readme_path: .github/README.md | ||
use_username: true | ||
use_username: true | ||
commit_message: "🤖 [contrib-readme-action] : updated readme" | ||
committer_username: "Action Contrib Readme" | ||
committer_email: "[email protected]" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.