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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/Rakefile +28 -28
  4. data/lib/rollo/version.rb +1 -1
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 87c168d3a5695174b71c0df9e5eb31363ccd39dd90488148db8c7c2ec06ba87f
4
- data.tar.gz: 6b4ae37dba8935cd288726b206403f19dbab90e9e8cf6d7bf012602d6e4fd1bd
3
+ metadata.gz: 2fb937a38e5f1897a24cc6691bf39e171d8978aebf90d1a3013ba72171a99286
4
+ data.tar.gz: 07d0e57738d2fd445448a6a391011e8219147c4346f2d39b2755b2d181e2ef17
5
5
  SHA512:
6
- metadata.gz: 5ef9a465a473ce5ddfd62b6d31ecb4b9438d52cb103669b36d47c37a93f588ba33d45c0f52cd432d3a055bda703166a161662cab461765ffa5dec57492bd9207
7
- data.tar.gz: 184ebca12daa08f901bedce4290a24940262ee84513fde7e041d6c546d164f1aedb989ba79caa30f1fe576928fa942cb6f3b6086cb7e0f4a40eb4937784d1682
6
+ metadata.gz: 782794c4786e9b113a10467805b74fee2c82b1cdf8a5cd9ce8365f0117745ba3bc26f5637042a73c0a26d986b1c4dcc7b67fc986e6f2a4d6e4cd1c5ac608a94c
7
+ data.tar.gz: 014a8fba0a6212fddf627391ea358214fe21fd0aa779884eecffd778521c34b6e3a84a1cf7cf080dace6ddccbed004d78a96cd0713fefb58a12aaae97f1cf9a3
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rollo (0.9.0.pre.7.pr251.1.1)
4
+ rollo (0.9.0.pre.7.pr251.2.1)
5
5
  aws-sdk (~> 3.0)
6
6
  aws-sdk-ecs (~> 1.22)
7
7
  hollerback (~> 0.1)
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Rollo
4
- VERSION = '0.9.0.pre.7.pr251.1.1'
4
+ VERSION = '0.9.0.pre.7.pr251.2.1'
5
5
  end
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.1.1
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-22 00:00:00.000000000 Z
11
+ date: 2026-07-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk