-
Notifications
You must be signed in to change notification settings - Fork 0
/
git_issue.hbs
50 lines (36 loc) · 1.31 KB
/
git_issue.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
Project Path: {{ absolute_code_path }}
Source Tree:
```
{{ source_tree }}
```
## Code
{{#each files}}
{{#if code}}
`{{path}}`:
{{code}}
{{/if}}
{{/each}}
## Issue Details
{{#if github_issue}}
### Issue #{{github_issue.number}}: {{github_issue.title}}
- State: {{github_issue.state}}
- URL: {{github_issue.html_url}}
{{#if github_issue.body}}
- Body:
> {{github_issue.body}}
{{else}}
- Body: No issue description available.
{{/if}}
{{else}}
No issue fetched or unable to fetch issue.
{{/if}}
{{#if git_diff}}
## Diff (Recent Changes)
```
{{git_diff}}
```
{{/if}}
## Request
I need help with the described Github issue for my code. Based on the code and issue details please help me implement the ticket suggestions, changes, or bug reports. I've provided you with the issue number, title, state, URL, and the issue body (the issue description).
Start with providing an outlined, high level plan for what has to be done. Then go into the specifics of the code that needs to be changed and how to change it in relation to the issue information.
Try to stick to clear, readable, and good coding practices. Let me know if there is any additional context or dependencies that you need in order to implement the changes. Also let me know if you have any questions regarding the requset. Please review your work before finishing.