Skip to content

Commit 1d82785

Browse files
author
Alex Wang
committed
merge main
2 parents 17b2028 + 6b6361d commit 1d82785

Some content is hidden

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

56 files changed

+1778
-8296
lines changed
Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
name: 🐛 Bug Report
2+
description: Report a bug or unexpected behavior
3+
title: "[Bug]: "
4+
labels: ["bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for reporting a bug! Please fill out the information below.
10+
11+
- type: textarea
12+
id: expected
13+
attributes:
14+
label: Expected Behavior
15+
description: What did you expect to happen?
16+
placeholder: I expected...
17+
validations:
18+
required: true
19+
20+
- type: textarea
21+
id: actual
22+
attributes:
23+
label: Actual Behavior
24+
description: What actually happened?
25+
placeholder: Instead, what happened was...
26+
validations:
27+
required: true
28+
29+
- type: textarea
30+
id: reproduce
31+
attributes:
32+
label: Steps to Reproduce
33+
description: Provide steps to reproduce the issue
34+
placeholder: |
35+
1.
36+
2.
37+
3.
38+
validations:
39+
required: true
40+
41+
- type: input
42+
id: sdk-version
43+
attributes:
44+
label: SDK Version
45+
description: What version of the SDK are you using?
46+
placeholder: e.g., 1.0.0
47+
validations:
48+
required: true
49+
50+
- type: dropdown
51+
id: python-version
52+
attributes:
53+
label: Python Version
54+
description: What version of Python are you using?
55+
options:
56+
- "3.14"
57+
- "3.13"
58+
- "3.12"
59+
- "3.11"
60+
- Other (specify in additional context)
61+
validations:
62+
required: true
63+
64+
- type: dropdown
65+
id: regression
66+
attributes:
67+
label: Is this a regression?
68+
description: Did this work in a previous version?
69+
options:
70+
- "No"
71+
- "Yes"
72+
validations:
73+
required: true
74+
75+
- type: input
76+
id: worked-version
77+
attributes:
78+
label: Last Working Version
79+
description: If this is a regression, what version did this work in?
80+
placeholder: e.g., 0.9.0
81+
validations:
82+
required: false
83+
84+
- type: textarea
85+
id: context
86+
attributes:
87+
label: Additional Context
88+
description: Add any other context, logs, or screenshots
89+
placeholder: Additional information...
90+
validations:
91+
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: Ask a question
4+
url: https://github.com/aws/aws-durable-execution-sdk-python/discussions/new
5+
about: Ask a general question about Durable Functions Python Testing Framework
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: 📚 Documentation Issue
2+
description: Report an issue with documentation
3+
title: "[Docs]: "
4+
labels: ["documentation"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for helping improve our documentation!
10+
11+
- type: textarea
12+
id: issue
13+
attributes:
14+
label: Issue
15+
description: Describe the documentation issue
16+
placeholder: The documentation says... but it should say...
17+
validations:
18+
required: true
19+
20+
- type: input
21+
id: page
22+
attributes:
23+
label: Page/Location
24+
description: Link to the page or specify where in the docs this occurs
25+
placeholder: https://... or README.md section "..."
26+
validations:
27+
required: true
28+
29+
- type: textarea
30+
id: fix
31+
attributes:
32+
label: Suggested Fix
33+
description: How should this be corrected?
34+
placeholder: This could be fixed by...
35+
validations:
36+
required: false
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
name: ✨ Feature Request
2+
description: Suggest a new feature or enhancement
3+
title: "[Feature]: "
4+
labels: ["enhancement"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to suggest a new feature!
10+
11+
- type: textarea
12+
id: what
13+
attributes:
14+
label: What would you like?
15+
description: Describe the feature you'd like to see
16+
placeholder: I would like to...
17+
validations:
18+
required: true
19+
20+
- type: textarea
21+
id: implementation
22+
attributes:
23+
label: Possible Implementation
24+
description: Suggest how this could be implemented
25+
placeholder: This could be implemented by...
26+
validations:
27+
required: false
28+
29+
- type: dropdown
30+
id: breaking-change
31+
attributes:
32+
label: Is this a breaking change?
33+
options:
34+
- "No"
35+
- "Yes"
36+
validations:
37+
required: true
38+
39+
- type: dropdown
40+
id: rfc
41+
attributes:
42+
label: Does this require an RFC?
43+
description: RFC is required when changing existing behavior or for new features that require research
44+
options:
45+
- "No"
46+
- "Yes"
47+
validations:
48+
required: true
49+
50+
- type: textarea
51+
id: context
52+
attributes:
53+
label: Additional Context
54+
description: Add any other context, examples, or screenshots
55+
placeholder: Additional information...
56+
validations:
57+
required: false

0 commit comments

Comments
 (0)