Skip to content

Commit 3b7e122

Browse files
committed
fix: adding the file .github wich was deleated ny mistake
1 parent e153dcd commit 3b7e122

19 files changed

+656
-227
lines changed

.github/.codecov.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
coverage:
2+
status:
3+
project:
4+
default:
5+
# minimum of 97% (real 96%)
6+
target: 97%
7+
threshold: 1%

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @woile @Lee-W @noirbizarre

.github/FUNDING.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# These are supported funding model platforms
2+
3+
open_collective: commitizen-tools
4+
github: commitizen-tools
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
name: 🛠 Bug report
2+
description: Create a report to help us improve
3+
title: Good bug title tells us about precise symptom, not about the root cause.
4+
labels: [bug]
5+
body:
6+
- type: textarea
7+
id: description
8+
attributes:
9+
label: Description
10+
description: |
11+
A clear and concise description of what the bug is
12+
validations:
13+
required: true
14+
- type: textarea
15+
id: steps-to-reproduce
16+
attributes:
17+
label: Steps to reproduce
18+
description: Steps to reproduce the behavior
19+
placeholder: |
20+
1. Run ...
21+
2. ...
22+
3. ...
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: current-behavior
27+
attributes:
28+
label: Current behavior
29+
description: What happens actually so you think this is a bug.
30+
validations:
31+
required: true
32+
- type: textarea
33+
id: desired-behavior
34+
attributes:
35+
label: Desired behavior
36+
description: |
37+
A clear and concise description of what you expected to happen.
38+
validations:
39+
required: true
40+
- type: textarea
41+
id: screenshots
42+
attributes:
43+
label: Screenshots
44+
description: |
45+
If applicable, add screenshots to help explain your problem.
46+
- type: textarea
47+
id: environment
48+
attributes:
49+
label: Environment
50+
description: |
51+
For older commitizen versions, please include the output of the following commands manually
52+
placeholder: |
53+
- commitizen version: `cz version`
54+
- python version: `python --version`
55+
- operating system: `python3 -c "import platform; print(platform.system())"`
56+
57+
```bash
58+
cz version --report
59+
```
60+
validations:
61+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Configuration: https://help.github.com/en/github/building-a-strong-community/configuring-issue-templates-for-your-repository
2+
3+
blank_issues_enabled: false
4+
contact_links:
5+
- name: Security Contact
6+
about: Please report security vulnerabilities to [email protected]
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: 📖 Documentation
2+
description: Suggest an improvement for the documentation of this project
3+
title: Content to be added or fixed
4+
labels: [documentation]
5+
body:
6+
- type: checkboxes
7+
id: type
8+
attributes:
9+
label: Type
10+
options:
11+
- label: Content inaccurate
12+
- label: Content missing
13+
- label: Typo
14+
- type: input
15+
id: url
16+
attributes:
17+
label: URL
18+
placeholder: |
19+
URL to the code we did not clearly describe or the document page where the content is inaccurate
20+
validations:
21+
required: true
22+
- type: textarea
23+
id: description
24+
attributes:
25+
label: Description
26+
description: |
27+
A clear and concise description of what content should be added or fixed
28+
validations:
29+
required: true
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: 🚀 Feature request
2+
description: Suggest an idea for this project
3+
title: "<One feature request per issue>"
4+
labels: [feature]
5+
body:
6+
- type: textarea
7+
id: description
8+
attributes:
9+
label: Description
10+
description: |
11+
A clear and concise description for us to know your idea.
12+
validations:
13+
required: true
14+
- type: textarea
15+
id: possible-solution
16+
attributes:
17+
label: Possible Solution
18+
description: |
19+
A clear and concise description of what you want to happen.
20+
- type: textarea
21+
id: additional-context
22+
attributes:
23+
label: Additional context
24+
description: |
25+
Add any other context or screenshots about the feature request here.
26+
- type: textarea
27+
id: related-issue
28+
attributes:
29+
label: Additional context
30+
description: |
31+
If applicable, add link to existing issue also help us know better.

.github/dependabot.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
version: 2
2+
updates:
3+
-
4+
# Maintain dependencies for GitHub Actions
5+
package-ecosystem: github-actions
6+
directory: /
7+
schedule:
8+
interval: daily
9+
labels:
10+
- dependencies
11+
commit-message:
12+
prefix: "ci"
13+
include: "scope"
14+
-
15+
# Maintain python dependencies
16+
package-ecosystem: pip
17+
directory: /
18+
schedule:
19+
interval: daily
20+
labels:
21+
- dependencies
22+
commit-message:
23+
prefix: "build"
24+
include: "scope"

.github/labeler.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
'pr-status: wait-for-review':
2+
- changed-files:
3+
- any-glob-to-any-file: '**'

.github/pull_request_template.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!--
2+
Thanks for sending a pull request!
3+
Please fill in the following content to let us know better about this change.
4+
-->
5+
6+
## Description
7+
<!-- Describe what the change is -->
8+
9+
10+
## Checklist
11+
12+
- [ ] Add test cases to all the changes you introduce
13+
- [ ] Run `./scripts/format` and `./scripts/test` locally to ensure this change passes linter check and test
14+
- [ ] Test the changes on the local machine manually
15+
- [ ] Update the documentation for the changes
16+
17+
## Expected behavior
18+
<!-- A clear and concise description of what you expected to happen -->
19+
20+
21+
## Steps to Test This Pull Request
22+
<!-- Steps to reproduce the behavior:
23+
1. ...
24+
2. ...
25+
3. ... -->
26+
27+
28+
## Additional context
29+
<!-- Add any other RELATED ISSUE, context or screenshots about the pull request here. -->

0 commit comments

Comments
 (0)