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

Commit 5048eb2

Browse files
authored
Merge pull request #25 from codacy/docs/issueTemplate
Add issue template
2 parents 8d64bcf + a30d25e commit 5048eb2

File tree

2 files changed

+65
-4
lines changed

2 files changed

+65
-4
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
### Are you looking for help?
2+
3+
This is an issue tracker, used to manage and track the development of this [Codacy](https://www.codacy.com/) project.
4+
5+
It is not a platform support system. If think your problem is related with our platform at https://www.codacy.com/, please contact us through our [contact form](https://www.codacy.com/contact) or our internal chat application, visible after you login on the bottom right corner.
6+
7+
Keep in mind that this issue tracker is for specific problems of this project.
8+
9+
### Scala Version (2.10.x / etc)
10+
11+
12+
### Operating System (Ubuntu 15.10 / MacOS 10.10 / Windows 10)
13+
14+
Use `uname -a` if on Linux.
15+
16+
### JDK (Oracle 1.8.0_72, OpenJDK 1.8.x, Azul Zing)
17+
18+
Paste the output from `java -version` at the command line.
19+
20+
### Library Dependencies
21+
22+
If this is an issue that involves integration with another system, include the exact version and OS of the other system, including any intermediate drivers or APIs i.e. if you connect to a PostgreSQL database, include both the version / OS of PostgreSQL and the JDBC driver version used to connect to the database.
23+
24+
### Expected Behavior
25+
26+
Please describe the expected behavior of the issue, starting from the first action.
27+
28+
1.
29+
2.
30+
3.
31+
32+
### Actual Behavior
33+
34+
Please provide a description of what actually happens, working from the same starting point.
35+
36+
Be descriptive: "it doesn't work" does not describe what the behavior actually is -- instead, say "when sending the coverage with the command (...) it returns the output error (...)"
37+
38+
1.
39+
2.
40+
3.
41+
42+
### Reproducible Test Case
43+
44+
Please provide a some information on how to reproduce the bug. A PR with a failing test would be awesome, if possible.
45+
46+
If the issue is more complex or requires configuration, please provide a link to a project on Github/Codacy that reproduces the issue.

.gitignore

Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
1-
.*
2-
!.gitignore
3-
!.java-version
4-
!.travis.yml
1+
logs
52
project/project
3+
project/target
64
target
5+
tmp
6+
.history
7+
dist
8+
/.idea
9+
/*.iml
10+
.cache
11+
/out
12+
/.idea_modules
13+
.classpath
14+
.project
15+
/RUNNING_PID
16+
/.settings
17+
.DS_Store
18+
*.iml
19+
codacy.pylint.conf
20+
npm-debug.log
21+
config

0 commit comments

Comments
 (0)