dependabot-common 0.111.51 → 0.111.52
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/lib/dependabot/pull_request_creator/github.rb +1 -1
- data/lib/dependabot/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: 925cd9a1d7a6ec3a96b16b6ab9a0e43f4dc6feb40a17576510d55736be10d92e
|
|
4
|
+
data.tar.gz: 19f1e06d849adef6843a046e22d2e9facd9794e6857a40ffba9baa3554cc45bc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d3c917a3e7efed516b150d15e1bca5a66d521ad36fb467ea672f7e3a93d75ead2cfdb9029f5e2fe54d69f92ea1d62269fab5d46e3c773318182cabae4bf056f1
|
|
7
|
+
data.tar.gz: ea16f6e8ef46938cf06079c3f7d36596cf507cc305856758e2dbeb8534b6ed5f554c5df8cdfac16bbad262381f7381e77c433feb997a2d53a9a6724f706a8498
|
|
@@ -289,7 +289,7 @@ module Dependabot
|
|
|
289
289
|
headers: custom_headers || {}
|
|
290
290
|
)
|
|
291
291
|
rescue Octokit::UnprocessableEntity => e
|
|
292
|
-
return handle_pr_creation_error(e) if e.message.include?
|
|
292
|
+
return handle_pr_creation_error(e) if e.message.include? "Error summary"
|
|
293
293
|
|
|
294
294
|
# Sometimes PR creation fails with no details (presumably because the
|
|
295
295
|
# details are internal). It doesn't hurt to retry in these cases, in
|
data/lib/dependabot/version.rb
CHANGED