Skip to content

Commit

Permalink
Added some github specific configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
mkaring committed Feb 10, 2021
1 parent 2ddf9d3 commit 7c93b95
Show file tree
Hide file tree
Showing 9 changed files with 111 additions and 59 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@mkaring
24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: Bug report
about: Create a report to help ConfuserEx improve
title: ""
labels: potential-bug, triage
assignees: ""
---

<!--
When providing the version for ConfuserEx, please provide the full version number that is printed in the log file during the obfuscation process.
For the target framework, the version of .NET that is targetted by the assembly you are trying to obfuscate is relevant.
-->

- ConfuserEx Version:
- Target Framework:
- Operating System:

Steps to Reproduce:

1.

<!--
Please also attach any files and examples that can be provided. At the very least the ConfuserEx project file (*.crproj).
-->
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: Question
url: https://github.com/mkaring/ConfuserEx/discussions/categories/q-a
about: Ask and answer questions about ConfuserEx
9 changes: 9 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
name: Feature request
about: Suggest an idea for ConfuserEx
title: ""
labels: enhancement, triage
assignees: ""
---

<!-- Describe the feature you'd like. -->
34 changes: 34 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: "CodeQL"

on:
push:
branches: [master, release/*]
pull_request:
branches: [master]
schedule:
- cron: "26 4 * * 0"

jobs:
analyze:
name: Analyze
runs-on: windows-latest

strategy:
fail-fast: false

steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
submodules: recursive

- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: csharp

- name: Autobuild
uses: github/codeql-action/autobuild@v1

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
17 changes: 17 additions & 0 deletions .github/workflows/issue-lock.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: "Lock closed issues"

on:
schedule:
- cron: "15 4 * * *"
workflow_dispatch:

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: dessant/lock-threads@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
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."
issue-lock-inactive-days: 30
process-only: "issues"
20 changes: 20 additions & 0 deletions .github/workflows/issue-stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: "Close stale issues"

on:
schedule:
- cron: "00 4 * * *"
workflow_dispatch:

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-close: 7
days-before-stale: 14
only-labels: "feedback-required"
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!"
stale-issue-label: "inactive"
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!"
59 changes: 0 additions & 59 deletions Confuser2.mono.sln

This file was deleted.

1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ configuration: Release
platform: Any CPU
skip_commits:
files:
- .github/*
- doc/*
- readme.md
- license.md
Expand Down

0 comments on commit 7c93b95

Please sign in to comment.