Skip to content

Commit 7f005aa

Browse files
committed
Add so private stuff is not in here
0 parents  commit 7f005aa

90 files changed

Lines changed: 13692 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/FUNDING.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# These are supported funding model platforms
2+
3+
github: michaelmsonne
4+
buy_me_a_coffee: sonnes
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
name: Bug Report
3+
about: Create a report to help SignTool UI to improve
4+
title: "bug: "
5+
labels: "bug"
6+
assignees: ""
7+
---
8+
9+
# Bug Report
10+
11+
**Version:**
12+
13+
<!-- Please specify commit or tag version. -->
14+
15+
**Current behavior:**
16+
17+
<!-- Describe how the bug manifests. -->
18+
19+
**Expected behavior:**
20+
21+
<!-- Describe what the behavior would be without the bug. -->
22+
23+
**Steps to reproduce:**
24+
25+
<!-- Please explain the steps required to duplicate the issue, especially if you are able to provide a sample application. -->
26+
27+
**Related code:**
28+
29+
<!-- If you are able to illustrate the bug or feature request with an example, please provide it here. -->
30+
31+
```
32+
insert short code snippets here
33+
```
34+
35+
**Other information:**
36+
37+
<!-- List any other information that is relevant to your issue. Related issues, suggestions on how to fix, Stack Overflow links, forum links, etc. -->
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: Feature Request
3+
about: Suggest an idea for this project
4+
title: "feat: "
5+
labels: "enhancement"
6+
assignees: ""
7+
---
8+
9+
# Feature Request
10+
11+
**Describe the Feature Request**
12+
13+
<!-- A clear and concise description of what the feature request is. Please include if your feature request is related to a problem. -->
14+
15+
**Describe Preferred Solution**
16+
17+
<!-- A clear and concise description of what you want to happen. -->
18+
19+
**Describe Alternatives**
20+
21+
<!-- A clear and concise description of any alternative solutions or features you've considered. -->
22+
23+
**Related Code**
24+
25+
<!-- If you are able to illustrate the bug or feature request with an example, please provide it here. -->
26+
27+
**Additional Context**
28+
29+
<!-- List any other information that is relevant to your issue. Stack traces, related issues, suggestions on how to add, use case, Stack Overflow links, forum links, screenshots, OS if applicable, etc. -->
30+
31+
**If the feature request is approved, would you be willing to submit a PR?**
32+
Yes / No _(Help can be provided if you need assistance submitting a PR)_
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: Codebase improvement
3+
about: Provide your feedback for the existing codebase. Suggest a better solution for algorithms, development tools, etc.
4+
title: "dev: "
5+
labels: "enhancement"
6+
assignees: ""
7+
---

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
blank_issues_enabled: false
3+
contact_links:
4+
- name: SignToolUI Community Support
5+
url: https://github.com/michaelmsonne/SignToolUI/discussions
6+
about: Please ask and answer questions here.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<!--- Please provide a general summary of your changes in the title above -->
2+
3+
## Pull request type
4+
5+
<!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. -->
6+
7+
Please check the type of change your PR introduces:
8+
9+
- [ ] Bugfix
10+
- [ ] Feature
11+
- [ ] Code style update (formatting, renaming)
12+
- [ ] Refactoring (no functional changes, no api changes)
13+
- [ ] Build related changes
14+
- [ ] Documentation content changes
15+
- [ ] Other (please describe):
16+
17+
## What is the current behavior?
18+
19+
<!-- Please describe the current behavior that you are modifying, or link to a relevant issue. -->
20+
21+
Issue Number: N/A
22+
23+
## What is the new behavior?
24+
25+
<!-- Please describe the behavior or changes that are being added by this PR. -->
26+
27+
-
28+
-
29+
-
30+
31+
## Other information
32+
33+
<!-- Any other information that is important to this PR such as screenshots of how the component looks before and after the change. -->

.github/workflows/lock.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Lock
3+
4+
on:
5+
#schedule:
6+
# - cron: "0 9 * * *"
7+
workflow_dispatch:
8+
9+
jobs:
10+
lock:
11+
name: 🔒 Lock closed issues and PRs
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: dessant/lock-threads@v3
15+
with:
16+
github-token: ${{ github.token }}
17+
issue-inactive-days: "30"
18+
issue-lock-reason: ""
19+
pr-inactive-days: "1"
20+
pr-lock-reason: ""

0 commit comments

Comments
 (0)