Skip to content

Commit 7c93b95

Browse files
committed
Added some github specific configurations
1 parent 2ddf9d3 commit 7c93b95

File tree

9 files changed

+111
-59
lines changed

9 files changed

+111
-59
lines changed

.github/CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@mkaring

.github/ISSUE_TEMPLATE/bug_report.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help ConfuserEx improve
4+
title: ""
5+
labels: potential-bug, triage
6+
assignees: ""
7+
---
8+
9+
<!--
10+
When providing the version for ConfuserEx, please provide the full version number that is printed in the log file during the obfuscation process.
11+
For the target framework, the version of .NET that is targetted by the assembly you are trying to obfuscate is relevant.
12+
-->
13+
14+
- ConfuserEx Version:
15+
- Target Framework:
16+
- Operating System:
17+
18+
Steps to Reproduce:
19+
20+
1.
21+
22+
<!--
23+
Please also attach any files and examples that can be provided. At the very least the ConfuserEx project file (*.crproj).
24+
-->

.github/ISSUE_TEMPLATE/config.yml

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Question
4+
url: https://github.com/mkaring/ConfuserEx/discussions/categories/q-a
5+
about: Ask and answer questions about ConfuserEx
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for ConfuserEx
4+
title: ""
5+
labels: enhancement, triage
6+
assignees: ""
7+
---
8+
9+
<!-- Describe the feature you'd like. -->

.github/workflows/codeql-analysis.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: "CodeQL"
2+
3+
on:
4+
push:
5+
branches: [master, release/*]
6+
pull_request:
7+
branches: [master]
8+
schedule:
9+
- cron: "26 4 * * 0"
10+
11+
jobs:
12+
analyze:
13+
name: Analyze
14+
runs-on: windows-latest
15+
16+
strategy:
17+
fail-fast: false
18+
19+
steps:
20+
- name: Checkout repository
21+
uses: actions/checkout@v2
22+
with:
23+
submodules: recursive
24+
25+
- name: Initialize CodeQL
26+
uses: github/codeql-action/init@v1
27+
with:
28+
languages: csharp
29+
30+
- name: Autobuild
31+
uses: github/codeql-action/autobuild@v1
32+
33+
- name: Perform CodeQL Analysis
34+
uses: github/codeql-action/analyze@v1

.github/workflows/issue-lock.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: "Lock closed issues"
2+
3+
on:
4+
schedule:
5+
- cron: "15 4 * * *"
6+
workflow_dispatch:
7+
8+
jobs:
9+
stale:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: dessant/lock-threads@v2
13+
with:
14+
github-token: ${{ secrets.GITHUB_TOKEN }}
15+
issue-lock-comment: "This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs."
16+
issue-lock-inactive-days: 30
17+
process-only: "issues"

.github/workflows/issue-stale.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: "Close stale issues"
2+
3+
on:
4+
schedule:
5+
- cron: "00 4 * * *"
6+
workflow_dispatch:
7+
8+
jobs:
9+
stale:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/stale@v3
13+
with:
14+
repo-token: ${{ secrets.GITHUB_TOKEN }}
15+
days-before-close: 7
16+
days-before-stale: 14
17+
only-labels: "feedback-required"
18+
close-issue-message: "Closing this issue because it needs more information and has not had recent activity. Please re-open this issue if more details can be provided. Thanks!"
19+
stale-issue-label: "inactive"
20+
stale-issue-message: "This issue needs more information and has not had recent activity. Please provide the missing information or it will be closed in 7 days. Thanks!"

Confuser2.mono.sln

-59
This file was deleted.

appveyor.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ configuration: Release
44
platform: Any CPU
55
skip_commits:
66
files:
7+
- .github/*
78
- doc/*
89
- readme.md
910
- license.md

0 commit comments

Comments
 (0)