rake_slack 0.2.0.pre.1 → 0.2.0.pre.2
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 +3 -1
- data/lib/rake_slack/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: ff127b8d010b04a8ea803f708132458a99363b689b9047ee60ad3527d3bbb25b
|
|
4
|
+
data.tar.gz: 34a10144b04f4cfd15376d4b6f1b346368d2f9731097c7cb489a4ee9e41b15b9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4b4b9c4eff4a7b917292988f5c0e5aef0f4ee3f028355aa8bd56d471e27a162e425809eb840b4fb3989fcb579f6f17028d1d720886369b7d19fed6e0dff8fa99
|
|
7
|
+
data.tar.gz: fa6e14a4a3edf6ef0d1d2d7e34923cdeca1109f9e2b4e02d22ed980e9bd8c358d5afb02b09c78061fb0973de28c57b0b70d5659b19bae6347d42d12b77b17f5e
|
data/Gemfile.lock
CHANGED
data/Rakefile
CHANGED
|
@@ -160,8 +160,10 @@ namespace :slack do
|
|
|
160
160
|
channel: 'C03N711HVDG', format: :failure },
|
|
161
161
|
{ when: { outcome: 'success' },
|
|
162
162
|
channel: 'C023XUE76GH', format: :success },
|
|
163
|
+
# Failures go to builds, not team-dev (org default), to keep noise out
|
|
164
|
+
# of a popular channel while this pipeline beds in.
|
|
163
165
|
{ when: {},
|
|
164
|
-
channel: '
|
|
166
|
+
channel: 'C023XUE76GH', format: :failure }
|
|
165
167
|
]
|
|
166
168
|
end
|
|
167
169
|
end
|
data/lib/rake_slack/version.rb
CHANGED