Skip to content

Commit ff595cf

Browse files
authored
add issue template (#329)
* add issue template * Add to exclude list * Add pull request template. * Add pull_request_template.md to exlude list
1 parent 2237764 commit ff595cf

File tree

5 files changed

+79
-0
lines changed

5 files changed

+79
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
2+
---
3+
name: Bug report
4+
about: Create a report to help us improve
5+
title: ''
6+
labels: bug
7+
assignees: ''
8+
9+
---
10+
11+
<!-- delete unnecessary items -->
12+
### Describe the bug
13+
14+
### Steps to reproduce
15+
1.
16+
2.
17+
3.
18+
19+
### Expected behaviour
20+
21+
### Error log
22+
23+
### Configuration
24+
#### Environment
25+
* Apache Spark version:
26+
* Scala version
27+
* Connector configuration configuration:
28+
* OS:
29+
30+
#### ClickHouse server
31+
* ClickHouse Server version:
32+
* ClickHouse Server non-default settings, if any:
33+
* `CREATE TABLE` statements for tables involved:
34+
* Sample data for all these tables, use [clickhouse-obfuscator](https://github.com/ClickHouse/ClickHouse/blob/master/programs/obfuscator/Obfuscator.cpp#L42-L80) if necessary
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: What would you like to add to the project?
4+
title: ''
5+
labels: 'enhancement'
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "gradle"
9+
directory: "/"
10+
schedule:
11+
interval: "monthly"
12+
labels:
13+
- "dependencies"
14+
open-pull-requests-limit: 5

.github/pull_request_template.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## Summary
2+
<!-- A short description of the changes with a link to an open issue. -->
3+
4+
## Checklist
5+
Delete items not relevant to your PR:
6+
- [ ] Unit and integration tests covering the common scenarios were added
7+
- [ ] A human-readable description of the changes was provided to include in CHANGELOG
8+
- [ ] For significant changes, documentation in https://github.com/ClickHouse/clickhouse-docs was updated with further explanations or tutorials

build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ project.ext {
4343
rat {
4444
verbose.set(true)
4545
exclude(
46+
".github/ISSUE_TEMPLATE/**",
47+
".github/dependabot.yml",
48+
".github/pull_request_template.md",
4649
"**/README.md",
4750
"CODE_OF_CONDUCT.md",
4851
"version.txt",

0 commit comments

Comments
 (0)