Skip to content

Commit 9325514

Browse files
author
Jeff Yang
authored
chore: add ISSUE_TEMPLATE and up pr template (#66) [skip ci]
1 parent b17397b commit 9325514

File tree

4 files changed

+73
-5
lines changed

4 files changed

+73
-5
lines changed
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
name: '🐞 Bug Report'
3+
about: 'Submit an issue to help us improve Code-Generator'
4+
title: ''
5+
labels: 'bug: pending triage'
6+
---
7+
8+
### Describe the bug
9+
10+
<!-- A clear and concise description of what is actually happening. -->
11+
12+
### Expected result
13+
14+
<!-- A clear and concise description of what is expected to happen. -->
15+
16+
### Reproduction
17+
18+
<!-- Please provide a link to a repo that can reproduce the problem you ran into. -->
19+
<!-- You can also upload the downloaded archive or your own archive in GitHub Issue UI. -->
20+
21+
### Steps to reproduce
22+
23+
<!-- Please, add steps on how to reproduce it. -->
24+
25+
### Environment info
26+
27+
Output of `python -m torch.utils.collect_env`:
28+
29+
```
30+
31+
```
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: '🚀 New Feature Request'
3+
about: 'Propose a new feature to be added to Code-Generator'
4+
title: ''
5+
labels: 'enhancement: pending triage'
6+
---
7+
8+
### Clear and concise description of the problem
9+
10+
<!-- Please provide the wishes / needs while you are using Code-Generator. -->
11+
12+
### Suggested solution
13+
14+
<!-- Please suggest the implementation for the feature. -->
15+
16+
### Alternative
17+
18+
<!-- Clear and concise description of any alternative solutions or features you've considered. -->
19+
20+
### Additional context
21+
22+
<!-- Any other context or screenshots about the feature request here. -->

.github/pull_request_template.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1-
Fixes #{issue_number}
1+
<!-- Thank you for contributing! -->
22

3-
Description:
3+
### Description
4+
5+
Fix # <!-- Please insert the issue number this PR solves -->
6+
7+
<!-- Please insert your description here and provide especially info about the "what" this PR is solving -->
8+
9+
### Additional context
10+
11+
<!-- e.g. is there anything you'd like reviewers to focus on? -->
12+
13+
---
14+
15+
### What is the purpose of this pull request?
16+
17+
- [ ] Bug fix
18+
- [ ] New feature
19+
- [ ] Other

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: ci
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [master]
66
pull_request:
77

88
jobs:
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
os: [ ubuntu-latest ]
14+
os: [ubuntu-latest]
1515
steps:
1616
- uses: actions/checkout@v2
1717
- uses: actions/setup-python@v2
@@ -45,7 +45,6 @@ jobs:
4545
- run: bash .github/run_test.sh unittest
4646
# - run: bash .github/run_test.sh integration
4747

48-
4948
lint:
5049
runs-on: ubuntu-latest
5150
steps:

0 commit comments

Comments
 (0)