Skip to content

Commit e20c295

Browse files
authored
[skip ci] Add issue and pull request template for better communication (#3644)
* [skip ci] add pr template * [skip ci] add config.yml * [skip ci] add bug.md * chore: add blankspace * [skip ci] make template be more clean
1 parent 8669fa5 commit e20c295

File tree

3 files changed

+82
-0
lines changed

3 files changed

+82
-0
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<!--
2+
Thanks for your interest in the project. I appreciate bugs filed and PRs submitted!
3+
Please make sure that you are familiar with and follow the Code of Conduct for
4+
this project (found in the CODE_OF_CONDUCT.md file).
5+
Also, please make sure you're familiar with and follow the instructions in the
6+
contributing guidelines (found in the CONTRIBUTING.md file).
7+
If you're new to contributing to open source projects, you might find this free
8+
video course helpful: http://kcd.im/pull-request
9+
Please fill out the information below to expedite the review and (hopefully)
10+
merge of your pull request!
11+
-->
12+
13+
<!-- What changes are being made? (What feature/bug is being fixed here?) -->
14+
15+
**What**:
16+
17+
<!-- Why are these changes necessary? -->
18+
19+
**Why**:
20+
21+
<!-- How were these changes implemented? -->
22+
23+
**How**:
24+
25+
<!-- Have you done all of these things? -->
26+
27+
**Checklist**:
28+
29+
<!-- add "N/A" to the end of each line that's irrelevant to your changes -->
30+
<!-- to check an item, place an "x" in the box like so: "- [x] Documentation" -->
31+
32+
- [ ] Documentation
33+
- [ ] Added/updated unit tests
34+
- [ ] Code complete
35+
36+
<!-- feel free to add additional comments -->

.github/workflows/bug.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: "\U0001F41E Bug report"
3+
about: Something isn’t working as expected
4+
title: ''
5+
labels: 'bug'
6+
assignees: ''
7+
---
8+
9+
**To reproduce:**
10+
11+
```less
12+
// less code here
13+
```
14+
15+
**Current behavior:**
16+
17+
<!-- A clear and concise description of what the bug is -->
18+
19+
**Expected behavior:**
20+
21+
<!-- A clear and concise description of what you expected to happen -->
22+
23+
**Environment information:**
24+
25+
<!-- Provide the `less` and `nodejs` packages versions -->
26+
27+
- `less` version:
28+
- `nodejs` version:
29+
- `operating system`:
30+
<!-- macos, linux or windows ? -->
31+
32+
<!-- feel free to add additional comments -->

.github/workflows/config.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: ✨ Feature Request / idea
4+
url: https://github.com/less/less.js/discussions/new
5+
about: Missing something in Less? Let us know.
6+
- name: 💬 Question / Discussion
7+
url: https://github.com/less/less.js/discussions/new
8+
about: Feel free to ask anything
9+
- name: 📖 View documentation
10+
url: https://lesscss.org
11+
about: Official Less documentation
12+
- name: ❓ StackOverflow
13+
url: https://stackoverflow.com/questions/tagged/less
14+
about: Ask question or find answers on Stack overflow

0 commit comments

Comments
 (0)