rollo 0.9.0.pre.7.pr251.1.1 → 0.9.0.pre.7.pr251.2.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 +4 -4
- data/Gemfile.lock +1 -1
- data/Rakefile +28 -28
- data/lib/rollo/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2fb937a38e5f1897a24cc6691bf39e171d8978aebf90d1a3013ba72171a99286
|
|
4
|
+
data.tar.gz: 07d0e57738d2fd445448a6a391011e8219147c4346f2d39b2755b2d181e2ef17
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 782794c4786e9b113a10467805b74fee2c82b1cdf8a5cd9ce8365f0117745ba3bc26f5637042a73c0a26d986b1c4dcc7b67fc986e6f2a4d6e4cd1c5ac608a94c
|
|
7
|
+
data.tar.gz: 014a8fba0a6212fddf627391ea358214fe21fd0aa779884eecffd778521c34b6e3a84a1cf7cf080dace6ddccbed004d78a96cd0713fefb58a12aaae97f1cf9a3
|
data/Gemfile.lock
CHANGED
data/Rakefile
CHANGED
|
@@ -121,6 +121,34 @@ namespace :test do
|
|
|
121
121
|
RSpec::Core::RakeTask.new(:unit)
|
|
122
122
|
end
|
|
123
123
|
|
|
124
|
+
namespace :slack do
|
|
125
|
+
RakeSlack.define_notification_tasks do |t|
|
|
126
|
+
t.bot_token = ENV.fetch('SLACK_BOT_TOKEN', nil)
|
|
127
|
+
t.routing_rules = [
|
|
128
|
+
{ when: { type: 'on_hold' },
|
|
129
|
+
channel: 'C038EDCRSQJ', format: :on_hold }, # release
|
|
130
|
+
{ when: { actor: 'dependabot[bot]', outcome: 'success' },
|
|
131
|
+
channel: 'C03N711HVDG', format: :success }, # builds-dependabot
|
|
132
|
+
{ when: { actor: 'dependabot[bot]' },
|
|
133
|
+
channel: 'C03N711HVDG', format: :failure }, # builds-dependabot
|
|
134
|
+
{ when: { outcome: 'success' },
|
|
135
|
+
channel: 'C023XUE76GH', format: :success }, # builds
|
|
136
|
+
# Failures go to builds, not team-dev (org default), to keep noise
|
|
137
|
+
# out of a popular channel while this pipeline beds in.
|
|
138
|
+
{ when: {},
|
|
139
|
+
channel: 'C023XUE76GH', format: :failure } # builds
|
|
140
|
+
]
|
|
141
|
+
end
|
|
142
|
+
end
|
|
143
|
+
|
|
144
|
+
namespace :repository do
|
|
145
|
+
desc 'Set the git author for CI'
|
|
146
|
+
task :set_ci_author do
|
|
147
|
+
sh 'git config --global user.name "InfraBlocks CI"'
|
|
148
|
+
sh 'git config --global user.email "ci@infrablocks.io"'
|
|
149
|
+
end
|
|
150
|
+
end
|
|
151
|
+
|
|
124
152
|
RakeGithub.define_repository_tasks(
|
|
125
153
|
namespace: :github,
|
|
126
154
|
repository: 'infrablocks/rollo'
|
|
@@ -169,34 +197,6 @@ RakeGithub.define_repository_tasks(
|
|
|
169
197
|
]
|
|
170
198
|
end
|
|
171
199
|
|
|
172
|
-
namespace :slack do
|
|
173
|
-
RakeSlack.define_notification_tasks do |t|
|
|
174
|
-
t.bot_token = ENV.fetch('SLACK_BOT_TOKEN', nil)
|
|
175
|
-
t.routing_rules = [
|
|
176
|
-
{ when: { type: 'on_hold' },
|
|
177
|
-
channel: 'C038EDCRSQJ', format: :on_hold }, # release
|
|
178
|
-
{ when: { actor: 'dependabot[bot]', outcome: 'success' },
|
|
179
|
-
channel: 'C03N711HVDG', format: :success }, # builds-dependabot
|
|
180
|
-
{ when: { actor: 'dependabot[bot]' },
|
|
181
|
-
channel: 'C03N711HVDG', format: :failure }, # builds-dependabot
|
|
182
|
-
{ when: { outcome: 'success' },
|
|
183
|
-
channel: 'C023XUE76GH', format: :success }, # builds
|
|
184
|
-
# Failures go to builds, not team-dev (org default), to keep noise
|
|
185
|
-
# out of a popular channel while this pipeline beds in.
|
|
186
|
-
{ when: {},
|
|
187
|
-
channel: 'C023XUE76GH', format: :failure } # builds
|
|
188
|
-
]
|
|
189
|
-
end
|
|
190
|
-
end
|
|
191
|
-
|
|
192
|
-
namespace :repository do
|
|
193
|
-
desc 'Set the git author for CI'
|
|
194
|
-
task :set_ci_author do
|
|
195
|
-
sh 'git config --global user.name "InfraBlocks CI"'
|
|
196
|
-
sh 'git config --global user.email "ci@infrablocks.io"'
|
|
197
|
-
end
|
|
198
|
-
end
|
|
199
|
-
|
|
200
200
|
namespace :pipeline do
|
|
201
201
|
desc 'Prepare GitHub Actions pipeline'
|
|
202
202
|
task prepare: %i[
|
data/lib/rollo/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rollo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.0.pre.7.pr251.
|
|
4
|
+
version: 0.9.0.pre.7.pr251.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- InfraBlocks Maintainers
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-07-
|
|
11
|
+
date: 2026-07-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk
|