gitx 2.16.0.pre.ci.81.1 → 2.16.0.pre.ci.85.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/lib/gitx/defaults.yml +7 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
MjE1YzkwYjZlZTY5ZDBkOGQ3ZGQ1MTBlMzZlNGQ5ZmRlZDJjNDgyMw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
M2YxMmU3MGVjYmEyYTkzNDdkZDg3YTk2MjEzN2NlZDVlYWE1YjU5Yg==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZWYzYTY3ZDlmNmZmYmQ1ZDFkNWNmYjgyMmYyOGNkZDA2MjA1MmM1M2ZmZjdk
|
|
10
|
+
MGE3MzUxOTM4NWViZWRhMjBkMWI1ZTFmZTA5NzcyZjJkNTQ1ZDM3MWY3NjY0
|
|
11
|
+
OTUyYjgyNmYyZDUxYjdmNDNjZGIzNjNmOTIwYzU0NTI3MTZhNjA=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZTIwOGY5MWUzOWViNTNjYmZhMzc3OTg4MzVhZjdkY2MyZmYzMmJlOTVjY2Vm
|
|
14
|
+
MWU0ODY1NTFiNWNiMmU2MWVmYjU0ODYyZGEyZjZhYTRjODgzNjAzMjllNDQ3
|
|
15
|
+
MDg1MmI0MTIzZDJhMjlmYWNhNzhkMDk0NmM0Y2Y2YzMyZTZjNmM=
|
data/lib/gitx/defaults.yml
CHANGED
|
@@ -1,15 +1,22 @@
|
|
|
1
1
|
---
|
|
2
|
+
# list of branches eligable for integration
|
|
2
3
|
aggregate_branches:
|
|
3
4
|
- staging
|
|
4
5
|
- prototype
|
|
6
|
+
|
|
7
|
+
# list of branches that should not be cleaned up
|
|
5
8
|
reserved_branches:
|
|
6
9
|
- HEAD
|
|
7
10
|
- master
|
|
8
11
|
- next_release
|
|
9
12
|
- staging
|
|
10
13
|
- prototype
|
|
14
|
+
|
|
15
|
+
# list of supported branches for generating buildtags
|
|
11
16
|
taggable_branches:
|
|
12
17
|
- master
|
|
13
18
|
- staging
|
|
19
|
+
|
|
20
|
+
# list of commands to execute after releasing feature branch
|
|
14
21
|
after_release:
|
|
15
22
|
- git integrate
|