Skip to content

Commit 9ddf550

Browse files
Merge pull request #33 from hellohaptik/develop_master_merge
develop -> master
2 parents c639c38 + 7007220 commit 9ddf550

File tree

17 files changed

+605
-49
lines changed

17 files changed

+605
-49
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 6 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,11 @@
1-
# Description
1+
## JIRA Ticket Number
22

3-
Please include a summary of the change and which issue is fixed (if any).
3+
JIRA TICKET:
44

5-
Fixes # (issue)
5+
## Description of change
6+
(REMOVE ME) Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
67

7-
## Type of change
8-
9-
Please delete options that are not relevant.
10-
11-
- [ ] Bug fix (non-breaking change which fixes an issue)
12-
- [ ] New feature (non-breaking change which adds functionality)
13-
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
14-
- [ ] This change requires a documentation update
15-
16-
# How Has This Been Tested?
17-
18-
Please describe the tests that you ran to verify your changes.
19-
20-
- [ ] Unit tests
21-
- [ ] Spec Tests
22-
- [ ] Integration tests / Manual Tests
23-
24-
# Checklist:
8+
## Checklist (OPTIONAL):
259

2610
- [ ] My code follows the style guidelines of this project
2711
- [ ] I have performed a self-review of my own code
@@ -30,4 +14,4 @@ Please describe the tests that you ran to verify your changes.
3014
- [ ] My changes generate no new warnings
3115
- [ ] I have added tests that prove my fix is effective or that my feature works
3216
- [ ] New and existing unit tests pass locally with my changes
33-
- [ ] Any dependent changes have been merged and published in downstream modules
17+
- [ ] Any dependent changes have been merged and published in downstream modules

.github/codecov.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
codecov:
2+
notify:
3+
require_ci_to_pass: yes
4+
5+
coverage:
6+
precision: 2
7+
round: down
8+
range: "40...100"
9+
10+
status:
11+
project: yes
12+
patch:
13+
default:
14+
target: 80%
15+
threshold: 1%
16+
changes: no
17+
18+
parsers:
19+
gcov:
20+
branch_detection:
21+
conditional: yes
22+
loop: yes
23+
method: no
24+
macro: no
25+
26+
comment:
27+
layout: "header, diff"
28+
behavior: default
29+
require_changes: no

.github/mergeable.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
mergeable:
2+
pull_requests:
3+
stale:
4+
days: 14
5+
message: 'This PR is stale. Please follow up!'
6+
7+
label:
8+
must_include:
9+
regex: '(new-feature)|(documentation)|(bug-fixes)|(enhancement)|(needs-migration)|(packages-updated)|(miscellaneous)|(superman)'
10+
message: 'Can you please add a valid label! [One of (new-feature) / (documentation) / (bug-fixes) / (enhancement) / (needs-migration) / (packages-updated) / (miscellaneous)]'
11+
must_exclude:
12+
regex: '(do-not-merge)'
13+
message: 'This PR is work in progress. Cannot be merged yet.'
14+
15+
description:
16+
no_empty:
17+
enabled: true
18+
message: 'Can you please add a description!'
19+
must_exclude:
20+
regex: 'do not merge'
21+
message: 'This PR is work in progress. Cannot be merged yet.'

.github/release-drafter.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name-template: $NEXT_PATCH_VERSION
2+
tag-template: $NEXT_PATCH_VERSION
3+
branches: master
4+
template: |
5+
# What's Changed
6+
7+
$CHANGES
8+
categories:
9+
- title: 🚀 Features
10+
label: new-feature
11+
- title: 🐛 Bug Fixes
12+
label: bug-fixes
13+
- title: 📖 Documentation
14+
label: documentation
15+
- title: 💯 Enhancements
16+
label: enhancement
17+
- title: 🚒 Migrations
18+
label: needs-migration
19+
- title: 📦 Packages Updated
20+
label: packages-updated
21+
- title: 👺 Miscellaneous
22+
label: miscellaneous
23+
- title: 💪 Superman Release
24+
label: superman
25+
26+
27+
# exclude-labels:
28+
# - miscellaneous

0 commit comments

Comments
 (0)