gha_config 0.12 → 0.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1 -1
- data/Gemfile.lock +1 -1
- data/lib/gha_config/version.rb +1 -1
- data/lib/gha_config/writer.rb +6 -0
- 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: a1b2cbe1be30f32bf1f88237e349b2a1e0ae2571df8e71c2d0a05c0a4c35e3d0
|
4
|
+
data.tar.gz: c3097850f7b446ba3e7060b190ca429877e6225b405b6f59cb7046743a915b76
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a3cb5333bfe9372ba143fc30bc39a20ff7baea723a0dfa2fcf869a2c9182c16deb3f26e3151dc99b53cdbbc8886e0ce1db40e91d53ed169d4a6c263a2821de49
|
7
|
+
data.tar.gz: c927252af563c8daf8abd1f656cf61e13adedaf80e1d1c94a17dbad47aa9b7ffb12313a51a36be433f09c74a28d8e78e42ebfa354ae852128da3f74a22902114
|
data/CHANGELOG.md
CHANGED
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
-
## [0.
|
8
|
+
## [0.13] - 2021-07-19
|
9
9
|
- Fixes related to global action
|
10
10
|
|
11
11
|
## [0.11] - 2021-07-15
|
data/Gemfile.lock
CHANGED
data/lib/gha_config/version.rb
CHANGED
data/lib/gha_config/writer.rb
CHANGED
@@ -54,6 +54,12 @@ module GhaConfig
|
|
54
54
|
end
|
55
55
|
output = output_hash.to_yaml
|
56
56
|
output = cleanup(output)
|
57
|
+
header = <<-OUT
|
58
|
+
######## GENERATED FROM ./github/workflow-src/CI.yml
|
59
|
+
######## USING gha_config https://github.com/wishabi/gha-config
|
60
|
+
|
61
|
+
OUT
|
62
|
+
output = header + output
|
57
63
|
File.write(output_file, output)
|
58
64
|
end
|
59
65
|
|