jive 0.4.1 → 0.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/jive/templates/pull_request_template.md +17 -17
- data/lib/jive/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 55a6067dfc91fe18fb853a027e5a28aa0a909bc7cbd1dc453c56ddb307ab8411
|
4
|
+
data.tar.gz: a0f68946959c4ae2943d4d44b39b716aa1ec38862c6f0abce5b05aec66f14597
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d50d52dee2df5ea73c53bcf966add65945e5b52fb4e0deec97cf3536c0681099338dc301a53042597a4c0a902eb0514b1d546a49f2b31744a0e571a2f262668
|
7
|
+
data.tar.gz: 85f476b26a46f30f9335a2cadbc03af39b598f82a26504aaa83f82cf6dabc9231d30d7502b9f2747a0d9e8becdfb6a939ba2be1a648e2c3be410b3e1aa9b1ec8
|
@@ -1,6 +1,15 @@
|
|
1
|
-
|
1
|
+
---
|
2
|
+
title: "Pull Request Template"
|
3
|
+
checklist:
|
4
|
+
- [ ] Clear description explaining the relevancy of the contribution.
|
5
|
+
- [ ] Unit, integration, and system tests.
|
6
|
+
- [ ] Regression and bugs are covered with tests.
|
7
|
+
- [ ] [Performance guidelines](https://docs.gitlab.com/ee/development/merge_request_performance_guidelines.html)
|
8
|
+
- [ ] [Secure coding guidelines](https://docs.gitlab.com/ee/development/secure_coding_guidelines.html)
|
9
|
+
- [ ] Documentation Updated
|
10
|
+
---
|
2
11
|
|
3
|
-
|
12
|
+
# Why is this needed?
|
4
13
|
|
5
14
|
## What does this do?
|
6
15
|
|
@@ -16,15 +25,15 @@ Fixes # (issue)
|
|
16
25
|
|
17
26
|
Before:
|
18
27
|
|
19
|
-
![before]
|
28
|
+
![Before][before]
|
20
29
|
|
21
30
|
After:
|
22
31
|
|
23
|
-
![after]
|
32
|
+
![After][after]
|
24
33
|
|
25
34
|
## Type of change
|
26
35
|
|
27
|
-
Delete options that are not relevant.
|
36
|
+
<!-- Delete options that are not relevant. -->
|
28
37
|
|
29
38
|
- [ ] Bug fix (non-breaking change which fixes an issue)
|
30
39
|
- [ ] New feature (non-breaking change which adds functionality)
|
@@ -33,19 +42,10 @@ Delete options that are not relevant.
|
|
33
42
|
|
34
43
|
## Verification Plan
|
35
44
|
|
36
|
-
How are we going to verify this change?
|
45
|
+
<!-- How are we going to verify this change? -->
|
37
46
|
|
38
47
|
- [ ] Step 1
|
39
48
|
- [ ] Step 2
|
40
49
|
|
41
|
-
|
42
|
-
|
43
|
-
- [ ] Clear description explaining the relevancy of the contribution.
|
44
|
-
- [ ] Unit, integration, and system tests.
|
45
|
-
- [ ] Regression and bugs are covered with tests.
|
46
|
-
- [ ] [Performance guidelines][performance]
|
47
|
-
- [ ] [Secure coding guidelines][secure]
|
48
|
-
- [ ] Documentation Updated
|
49
|
-
|
50
|
-
[performance]: https://docs.gitlab.com/ee/development/merge_request_performance_guidelines.html
|
51
|
-
[secure]: https://docs.gitlab.com/ee/development/secure_coding_guidelines.html
|
50
|
+
[after]: https://user-images.githubusercontent.com/x/y.png
|
51
|
+
[before]: https://user-images.githubusercontent.com/x/y.png
|
data/lib/jive/version.rb
CHANGED