ruboty-qiita-github 0.3.0 → 0.3.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9ff6f082efd3d94c6e28dbbf39ae0285cd0f6729415c7ad6e7c3527da26cb978
|
|
4
|
+
data.tar.gz: 3d0f484fa14f6634f6db23dc85fef11467d3d03de29d963cb8ccd81097e12e97
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b69769ed73851c28ff5af05a7adcf8d97c6fcd5b54ded6e95e931125abde5a28d029069cfdd5cfecd865f8ea2fbeb4984ca24c13c109b93cf2a899df2e4992be
|
|
7
|
+
data.tar.gz: 194f8a7d7c3c556fe664c5279d7054378ed127a13312fa0196706ec137551371fcfb3a59ab41fb9b9a8780218a6eb9a6f1ec5a9fa8fe324930ed446a8533ae18
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
## Unreleased
|
|
2
2
|
|
|
3
|
+
## 0.3.2
|
|
4
|
+
- Allow space in merge command
|
|
5
|
+
- Send message when all exceptions
|
|
6
|
+
|
|
7
|
+
## 0.3.1
|
|
8
|
+
- Enable to change migration warning message
|
|
9
|
+
|
|
3
10
|
## 0.3.0
|
|
4
11
|
- Fix a bug that deploy pr messages trigger other actions also
|
|
5
12
|
- Warn when deployment pull request includes database migration
|
|
@@ -9,7 +9,10 @@ module Ruboty
|
|
|
9
9
|
def create
|
|
10
10
|
super
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
return unless database_schema_changed?
|
|
13
|
+
|
|
14
|
+
message.reply(ENV.fetch('MIGRATION_WARNING_MESSAGE',
|
|
15
|
+
'@here :warning: This deployment includes some database migrations'))
|
|
13
16
|
end
|
|
14
17
|
|
|
15
18
|
# e.g. master
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruboty-qiita-github
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryo Nakamura
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2023-08-07 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: activesupport
|
|
@@ -232,7 +232,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
232
232
|
- !ruby/object:Gem::Version
|
|
233
233
|
version: '0'
|
|
234
234
|
requirements: []
|
|
235
|
-
rubygems_version: 3.1.
|
|
235
|
+
rubygems_version: 3.1.6
|
|
236
236
|
signing_key:
|
|
237
237
|
specification_version: 4
|
|
238
238
|
summary: Manage GitHub via Ruboty.
|