kennel 1.152.0 → 1.152.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c18c40b3d259f4b19d396f956937f54a50d064e79f9c069204aede3d5e743f1b
4
- data.tar.gz: dfabe30c42756650cda60fc0d90268f672284841e8dfff76db1d08f9e956f3b5
3
+ metadata.gz: 88b86334b6da3d629e425ac3f737a777ad2dd87b37a57fc4743c1ea3cb339bf1
4
+ data.tar.gz: 31450e2d5e08537c3535febf9c9ed325c4f74389fe214672630cc9f2a7588712
5
5
  SHA512:
6
- metadata.gz: adb30eab75ab3e4cc7a5f86ac0f7c465441c07e53fe19534f339e67ac56d14719e40e598260bb6e2a123183badd1bd38aabe8eab12d8fcfe03b89cc57f244930
7
- data.tar.gz: 69b9d6e6bbedf62d9325d58fee3e9aa76b1f79693a9b36d7232cd6771327c1803ea26e91e09bb23078b710c32f2f13fd9b1974d71fc13539fa33e5071aaa73ba
6
+ metadata.gz: de69bafea2a57a785650fa739a0f99072cf5e87405abf3bea8c7d31d03bca82dab1f8a01ff0f6ec0400fef46b76922e44edef5af4b626d2e12e3752d92bde171
7
+ data.tar.gz: f166d2222b7abfd73ee5cdd5983084cfe050b0faf5b2cec0e8cc5034c101474eade279d9f949e8898249862ba16f12b9da13460269c5f8f19ab59c9974c73a99
@@ -16,7 +16,9 @@ module Kennel
16
16
  @token = token
17
17
  commit = Utils.capture_sh("git show #{ref}")
18
18
  @sha = commit[/^Merge: \S+ (\S+)/, 1] || commit[/\Acommit (\S+)/, 1] || raise("Unable to find commit")
19
- @pr = commit[/^\s+.*\(#(\d+)\)/, 1] # from squash
19
+ @pr =
20
+ commit[/^\s+.*\(#(\d+)\)/, 1] || # from squash
21
+ commit[/^\s+Merge pull request #(\d+)/, 1] # from merge with unmodified commit message
20
22
  @repo_part = ENV["GITHUB_REPOSITORY"] || begin
21
23
  origin = ENV["PROJECT_REPOSITORY"] || Utils.capture_sh("git remote -v").split("\n").first
22
24
  origin[%r{github\.com[:/](\S+?)(\.git|$)}, 1] || raise("no origin found in #{origin}")
@@ -6,7 +6,8 @@ module Kennel
6
6
  include TagsValidation
7
7
 
8
8
  READONLY_ATTRIBUTES = superclass::READONLY_ATTRIBUTES + [
9
- :author_handle, :author_name, :modified_at, :deleted_at, :url, :is_read_only, :notify_list, :restricted_roles
9
+ :author_handle, :author_name, :modified_at, :deleted_at, :url, :is_read_only, :notify_list, :restricted_roles,
10
+ :experience_type
10
11
  ]
11
12
  TRACKING_FIELD = :description
12
13
  REQUEST_DEFAULTS = {
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Kennel
3
- VERSION = "1.152.0"
3
+ VERSION = "1.152.2"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kennel
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.152.0
4
+ version: 1.152.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Grosser
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-05-27 00:00:00.000000000 Z
11
+ date: 2025-02-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: diff-lcs