Skip to content
This repository was archived by the owner on Feb 18, 2022. It is now read-only.

Commit ee123e4

Browse files
committed
zuul support and github templates
Signed-off-by: Harshad Reddy Nalla <[email protected]>
1 parent b353905 commit ee123e4

File tree

6 files changed

+92
-0
lines changed

6 files changed

+92
-0
lines changed

.coafile

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[all]
2+
bears = LineCountBear, FilenameBear
3+
files = **.py, **.yml, **.rst, **.md
4+
ignore = **/__pycache__/**, **/__pycache__, __pycache__, __pycache__/**, **/*.pyc, *.pyc
5+
max_lines_per_file = 1000
6+
max_line_length = 120
7+
8+
[all.python]
9+
bears = PycodestyleBear, PyDocStyleBear
10+
files = **.py
11+
language = Python
12+
editor = vim
13+
ignore = setup.py
14+
15+
[all.yaml]
16+
bears = YAMLLintBear
17+
files = **.yaml
18+
ignore = .zuul.yaml
19+
max_line_length = 120
20+
21+
[zuul.yaml]
22+
bears = YAMLLintBear
23+
files = .zuul.yaml
24+
max_line_length = 180

.github/CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @goern @sub-mod

.github/ISSUE_TEMPLATE/bug_report.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
5+
---
6+
7+
**Describe the bug**
8+
A clear and concise description of what the bug is.
9+
10+
**To Reproduce**
11+
Steps to reproduce the behavior:
12+
1. Go to '...'
13+
2. Click on '....'
14+
3. Scroll down to '....'
15+
4. See error
16+
17+
**Expected behavior**
18+
A clear and concise description of what you expected to happen.
19+
20+
**Screenshots**
21+
If applicable, add screenshots to help explain your problem.
22+
23+
**Additional context**
24+
Add any other context about the problem here.
+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
5+
---
6+
7+
**Is your feature request related to a problem? Please describe.**
8+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
9+
10+
**Describe the solution you'd like**
11+
A clear and concise description of what you want to happen.
12+
13+
**Describe alternatives you've considered**
14+
A clear and concise description of any alternative solutions or features you've considered.
15+
16+
**Additional context**
17+
Add any other context or screenshots about the feature request here.

.github/PULL_REQUEST_TEMPLATE.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
## Related Issues and Dependencies
2+
3+
4+
5+
## This introduces a breaking change
6+
7+
- [ ] Yes
8+
- [ ] No
9+
10+
<!-- If this introduces a breaking change, please describe the impact and migration path for existing applications below. -->
11+
12+
## This Pull Request implements
13+
14+
… Explain your changes.
15+
16+
## Description
17+
18+
<!--- Describe your changes in detail -->

.zuul.yaml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
- project:
2+
check:
3+
jobs:
4+
- "thoth-coala"
5+
gate:
6+
jobs:
7+
- "thoth-coala"
8+

0 commit comments

Comments
 (0)