Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: bug
assignees: ''

---

## Describe the bug

A clear and concise description of what the bug is.

## To Reproduce

Steps to reproduce the behavior:

1. Write the code below '...'
2. Run it with the command '....'

### code snippet

A code snippet that demonstrates the issue or a link to a code repository the developers can easily pull down to recreate the issue locally

**Note**: Because the developers need to copy and paste the code snippet, including a code snippet as a media file (i.e. .gif) is not sufficient.

## Expected behavior

A clear and concise description of what you expected to happen.

## Environment

### SpringQL-client-c

<!--- Point out an asset you use from Releases page: https://github.com/SpringQL/SpringQL-client-c/releases -->

- Version: [e.g. v0.9.0+2]
- Asset: [e.g. springql_client-x86_64-apple-darwin-debug.zip]

### your machine

- Device: [e.g. MacBook Pro, Raspberry Pi4 ModelB 4GB]
- OS: [e.g. Ubuntu 22.04]

## Additional context

Add any other context about the problem here.
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/ci-related-issues.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
name: CI-related issues
about: Suggest new CI jobs, and report CI troubles
title: ''
labels: ci
assignees: ''

---


24 changes: 24 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: feat
assignees: ''

---

## Is your feature request related to a problem? Please describe.

<!--- A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] -->

## Describe the solution you'd like

<!--- A clear and concise description of what you want to happen. -->

## Describe alternatives you've considered

<!--- A clear and concise description of any alternative solutions or features you've considered. -->

## Additional context

<!--- Add any other context or screenshots about the feature request here. -->
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/refactor-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Refactor request
about: Suggest an idea for refactoring
title: ''
labels: refactor
assignees: ''

---

## Motivation

## Refactoring target

<!--- Source files, lines, modules, ... -->
18 changes: 18 additions & 0 deletions pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
## Issue number and link

Fixes: #xxx

<!--- For bugfix, you must link to at least an issue to show clear way to reproduce the bug. -->

<!--- For new feature without any related issues, include your motivation in the next section -->

## Describe your changes

## Checklist before requesting a review

- [ ] I follow the [Semantic Pull Requests](https://github.com/zeke/semantic-pull-requests) rules (bugfix/feature)
- [ ] I specified links to related issues (must: bugfix, want: feature)
- [ ] I have performed a self-review of my code (bugfix/feature)
- [ ] I have added thorough tests (bugfix/feature)
- [ ] I have edited `## [Unreleased]` section in `CHANGELOG.md` following [keep a changelog](https://keepachangelog.com/en/1.0.0/) syntax (bugfix/feature)
- [ ] I {made/will make} a related pull request for [documentation repo](https://github.com/SpringQL/SpringQL.github.io) (feature)