Skip to content

Commit b07d0a4

Browse files
committed
Merge remote-tracking branch 'origin/main' into feat/xslt-tester
2 parents 29a9093 + 76a19d2 commit b07d0a4

File tree

137 files changed

+2961
-676
lines changed

Some content is hidden

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

137 files changed

+2961
-676
lines changed

.github/ISSUE_TEMPLATE/bug-report.md

Lines changed: 0 additions & 34 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
name: 🐞 Bug Report
2+
description: File a bug report.
3+
labels: ['bug', 'triage']
4+
assignees:
5+
- CorentinTh
6+
body:
7+
- type: markdown
8+
attributes:
9+
value: |
10+
Thanks for taking the time to fill out this bug report!
11+
12+
- type: textarea
13+
id: bug-description
14+
attributes:
15+
label: Describe the bug
16+
description: A clear and concise description of what the bug is. If you intend to submit a PR for this issue, tell us in the description. Thanks!
17+
placeholder: Bug description
18+
validations:
19+
required: true
20+
21+
- type: textarea
22+
id: what-happened
23+
attributes:
24+
label: What happened?
25+
description: Also tell us, what did you expect to happen? If you have a screenshot, you can paste it here.
26+
placeholder: Tell us what you see!
27+
value: 'A bug happened!'
28+
validations:
29+
required: true
30+
31+
- type: textarea
32+
id: version
33+
attributes:
34+
label: System information
35+
description: What is you environment? You can use the `npx envinfo --system --browsers` command to get this information.
36+
validations:
37+
required: true
38+
39+
- type: dropdown
40+
id: app-type
41+
attributes:
42+
label: Where did you encounter the bug?
43+
options:
44+
- Public app (it-tools.tech)
45+
- A self hosted
46+
- Other (installations, docker, etc.)
47+
validations:
48+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
name: 🚀 New feature proposal
2+
description: Propose a new feature/enhancement or tool idea for IT-Tools
3+
labels: ['enhancement', 'triage']
4+
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for your interest in the project and taking the time to fill out this feature report!
10+
11+
- type: dropdown
12+
id: request-type
13+
attributes:
14+
label: What type of request is this?
15+
options:
16+
- New tool idea
17+
- New feature for an existing tool
18+
- Deployment or CI/CD improvement
19+
- Self-hosting improvement
20+
- Other
21+
validations:
22+
required: true
23+
24+
- type: textarea
25+
id: feature-description
26+
attributes:
27+
label: Clear and concise description of the feature you are proposing
28+
description: A clear and concise description of what the feature is.
29+
placeholder: 'Example: a token generator tool'
30+
validations:
31+
required: true
32+
33+
- type: textarea
34+
id: alternative
35+
attributes:
36+
label: Is their example of this tool in the wild?
37+
description: Provide link to already existing tool (like websites, apps, cli, ...) or npm packages that could be used or provide inspiration for the feature.
38+
39+
- type: textarea
40+
id: additional-context
41+
attributes:
42+
label: Additional context
43+
description: Any other context or screenshots about the feature request here.
44+
45+
- type: checkboxes
46+
id: checkboxes
47+
attributes:
48+
label: Validations
49+
description: Before submitting the issue, please make sure you do the following
50+
options:
51+
- label: Check the feature is not already implemented in the project.
52+
required: true
53+
- label: Check that there isn't already an issue that request the same feature to avoid creating a duplicate.
54+
required: true
55+
- label: Check that the feature can be implemented in a client side only app (IT-Tools is client side only, no server).
56+
required: true

.github/ISSUE_TEMPLATE/new-tool-request.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/other-request.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/tool-improvement.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- run: corepack enable
1616
- uses: actions/setup-node@v3
1717
with:
18-
node-version: 16
18+
node-version: 20
1919
cache: 'pnpm'
2020

2121
- name: Install dependencies

.github/workflows/codeql-analysis.yml

Lines changed: 0 additions & 69 deletions
This file was deleted.

.github/workflows/docker-nightly-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- run: corepack enable
3333
- uses: actions/setup-node@v3
3434
with:
35-
node-version: 16
35+
node-version: 20
3636
cache: 'pnpm'
3737

3838
- name: Install dependencies

0 commit comments

Comments
 (0)