Skip to content

Commit b755de0

Browse files
committed
Updated CI/CD
1 parent 973d83c commit b755de0

File tree

6 files changed

+96
-60
lines changed

6 files changed

+96
-60
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

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

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
name: Bug Report
2+
description: "Create a report to help us improve"
3+
labels: ["bug"]
4+
body:
5+
- type: checkboxes
6+
id: prerequisites
7+
attributes:
8+
label: Prerequisites
9+
description: For more information, see the [CONTRIBUTING guide](https://github.com/AngleSharp/AngleSharp.Css/blob/devel/.github/CONTRIBUTING.md).
10+
options:
11+
- label: Can you reproduce the problem in a [MWE](https://en.wikipedia.org/wiki/Minimal_working_example)?
12+
required: true
13+
- label: Are you running the latest version of AngleSharp.Css?
14+
required: true
15+
- label: Did you check the FAQs to see if that helps you?
16+
required: true
17+
- label: Are you reporting to the correct repository? (there are multiple AngleSharp libraries, e.g., `AngleSharp.Xml` for Xml support)
18+
required: true
19+
- label: Did you perform a search in the issues?
20+
required: true
21+
22+
- type: textarea
23+
id: description
24+
attributes:
25+
label: Description
26+
description: Share a clear and concise description of the problem.
27+
placeholder: Description
28+
validations:
29+
required: true
30+
31+
- type: textarea
32+
id: reproduction-steps
33+
attributes:
34+
label: Steps to Reproduce
35+
description: |
36+
Include minimal steps to reproduce the problem if possible. E.g.: the smallest possible code snippet; or a small project, with steps to run it. Make sure to include logs and exceptions as text rather than screenshots.
37+
placeholder: Minimal Reproduction
38+
validations:
39+
required: true
40+
41+
- type: textarea
42+
id: expected-behavior
43+
attributes:
44+
label: Expected Behavior
45+
description: |
46+
Provide a description of the expected behavior.
47+
placeholder: Expected Behavior
48+
validations:
49+
required: true
50+
51+
- type: textarea
52+
id: actual-behavior
53+
attributes:
54+
label: Actual Behavior
55+
description: |
56+
Provide a description of the actual behavior observed. If applicable, include the error messages and the exception stacktrace.
57+
placeholder: Actual Behavior
58+
validations:
59+
required: true
60+
61+
- type: textarea
62+
id: known-workarounds
63+
attributes:
64+
label: Possible Solution / Known Workarounds
65+
description: |
66+
Provide a description of any possible solution or known workarounds.
67+
placeholder: Possible Solution / Known Workarounds
68+
validations:
69+
required: false

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Documentation
4+
url: https://anglesharp.github.io/
5+
about: Read our comprehensive documentation

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 21 deletions
This file was deleted.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Feature Idea
2+
description: "Suggest an idea for this project"
3+
labels: ["enhancement"]
4+
body:
5+
- type: textarea
6+
attributes:
7+
label: Description
8+
description: What should the new feature do?
9+
validations:
10+
required: true
11+
12+
- type: textarea
13+
attributes:
14+
label: Background
15+
description: Provide any additional background for the feature. e.g., user scenarios.
16+
17+
- type: textarea
18+
attributes:
19+
label: Specification
20+
description: In case of updates that adhere to specification changes, please reference the used specification.

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ jobs:
5656
dotnet-version: |
5757
6.0.x
5858
7.0.x
59+
8.0.x
5960
6061
- name: Build
6162
run: ./build.sh
@@ -72,6 +73,7 @@ jobs:
7273
dotnet-version: |
7374
6.0.x
7475
7.0.x
76+
8.0.x
7577
7678
- name: Build
7779
run: |

0 commit comments

Comments
 (0)