firespring_dev_commands 2.2.1.pre.alpha.3 → 2.2.1.pre.alpha.4

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: 7f7ee4edb84fcf55633780edce93e62119ba287da59fd45ce4a7b06109ce9e75
4
- data.tar.gz: 3344e8910159e5b5df252b807b006c366956ce0220b2b65d6e5a92be9e958484
3
+ metadata.gz: e88b6624e61a9b925a68bcba5d681a07934dfb893df3a2b3015ab589bdb08d9e
4
+ data.tar.gz: 65ead36c027f263b188eabf9532d7a4d56024013aceef93502c14997d973d409
5
5
  SHA512:
6
- metadata.gz: 6f93bd21df947af3689c965be24f664fe23841c522ab2a90c2fe0b1b4642f774805426da93ffab856c03ec99e77bd06e4b5af5a83d40c833fb217826c991566a
7
- data.tar.gz: 80cd78d0f4f92c7334c2908d317596782b2bec357d556983388ee6cf97e623f9210853a928f1e4823fa2536cbec0dd97af3f9243ecb3e48ee8bb244569e68bbf
6
+ metadata.gz: 0fda12454259b1364ef6561b63a03f8bec741ab92d04d2ecf34d6ef1eef21ea7a4bbf058368d8277b07734ba307f89c1d28893c37ab243f891500daa7a0d3846
7
+ data.tar.gz: c820bf2ecc04f71928accebeb6a1561d676cd06fbef5b5e3a889fee15218bc049b378ff9d749cfed21a8775457cd555901979a1a2439812fa1eb3df0ae2546ba
@@ -429,20 +429,17 @@ module Dev
429
429
  g.fetch('origin', prune: true)
430
430
  end
431
431
 
432
- def commit_status(token:, repo_name:, branch:, status:, repo_org: nil, options: {})
432
+ def commit_status(token:, repo_name:, commit_id:, status:, repo_org: nil, options: {})
433
433
  # TODO: Split out the default of 'firespring' into a configuration variable
434
434
  repo_org = 'firespring' if repo_org.to_s.strip.empty?
435
+ repo = "#{repo_org}/#{repo_name}"
435
436
 
436
437
  # Set up the GitHub client
437
438
  client = Octokit::Client.new(access_token: token)
438
439
 
439
- # Fetch the latest commit SHA for the given branch
440
- repo = "#{repo_org}/#{repo_name}"
441
- ref = "heads/#{branch}"
442
- sha = client.ref(repo, ref).object.sha
443
-
444
440
  # Create the commit status
445
- client.create_status(repo, sha, status, options)
441
+ puts "Tagging commit #{commit_id} in #{repo} as #{status} for #{options[:context]}"
442
+ client.create_status(repo, commit_id, status, options)
446
443
  end
447
444
 
448
445
  # Builds an ssh repo URL using the org and repo name given
@@ -173,24 +173,24 @@ module Dev
173
173
  desc 'Add pending status to commit' \
174
174
  "\n\tuse GITHUB_TOKEN=abc123 enables write options for the check (required)" \
175
175
  "\n\tuse REPOSITORY=abc123 to specify the repository (required)" \
176
- "\n\tuse BRANCH=abc123 to specify the branch of code (required)" \
176
+ "\n\tuse COMMIT_ID=abc123 to specify the commit id of code (required)" \
177
177
  "\n\tuse CONTEXT=abc123 names the check on the PR (optional)" \
178
178
  "\n\tuse TARGET_URL={url} adds 'detail' hyperlink to check on the PR (optional)"
179
179
  task :pending do
180
180
  status = 'pending'
181
181
  token = ENV['GITHUB_TOKEN'].to_s.strip
182
182
  repo_org, repo_name = ENV['REPOSITORY'].to_s.strip.split('/')
183
- branch = ENV['BRANCH'].to_s.strip
183
+ commit_id = ENV['COMMIT_ID'].to_s.strip
184
184
 
185
185
  raise 'GITHUB_TOKEN is required' unless token
186
- raise 'Repository name is required' unless repo_name
187
- raise 'Branch name is required' unless branch
186
+ raise 'REPOSITORY is required' unless repo_name
187
+ raise 'COMMIT_ID is required' unless commit_id
188
188
 
189
189
  options = {}
190
190
  options[:context] = ENV['CONTEXT'].to_s.strip unless ENV['CONTEXT'].to_s.strip.empty?
191
191
  options[:target_url] = ENV['TARGET_URL'].to_s.strip unless ENV['TARGET_URL'].to_s.strip.empty?
192
192
 
193
- Dev::Git.new.commit_status(token:, repo_name:, branch:, status:, repo_org:, options:)
193
+ Dev::Git.new.commit_status(token:, repo_name:, commit_id:, status:, repo_org:, options:)
194
194
  end
195
195
  end
196
196
  end
@@ -210,24 +210,24 @@ module Dev
210
210
  desc 'Add success status to commit' \
211
211
  "\n\tuse GITHUB_TOKEN=abc123 enables write options for the check (required)" \
212
212
  "\n\tuse REPOSITORY=abc123 to specify the repository (required)" \
213
- "\n\tuse BRANCH=abc123 to specify the branch of code (required)" \
213
+ "\n\tuse COMMIT_ID=abc123 to specify the commit id of code (required)" \
214
214
  "\n\tuse CONTEXT=abc123 names the check on the PR (optional)" \
215
215
  "\n\tuse TARGET_URL={url} adds 'detail' hyperlink to check on the PR (optional)"
216
216
  task :success do
217
217
  status = 'success'
218
218
  token = ENV['GITHUB_TOKEN'].to_s.strip
219
219
  repo_org, repo_name = ENV['REPOSITORY'].to_s.strip.split('/')
220
- branch = ENV['BRANCH'].to_s.strip
220
+ commit_id = ENV['COMMIT_ID'].to_s.strip
221
221
 
222
222
  raise 'GITHUB_TOKEN is required' unless token
223
- raise 'Repository name is required' unless repo_name
224
- raise 'Branch name is required' unless branch
223
+ raise 'REPOSITORY is required' unless repo_name
224
+ raise 'COMMIT_ID is required' unless commit_id
225
225
 
226
226
  options = {}
227
227
  options[:context] = ENV['CONTEXT'].to_s.strip unless ENV['CONTEXT'].to_s.strip.empty?
228
228
  options[:target_url] = ENV['TARGET_URL'].to_s.strip unless ENV['TARGET_URL'].to_s.strip.empty?
229
229
 
230
- Dev::Git.new.commit_status(token:, repo_name:, branch:, status:, repo_org:, options:)
230
+ Dev::Git.new.commit_status(token:, repo_name:, commit_id:, status:, repo_org:, options:)
231
231
  end
232
232
  end
233
233
  end
@@ -247,24 +247,24 @@ module Dev
247
247
  desc 'Add error status to commit' \
248
248
  "\n\tuse GITHUB_TOKEN=abc123 enables write options for the check (required)" \
249
249
  "\n\tuse REPOSITORY=abc123 to specify the repository (required)" \
250
- "\n\tuse BRANCH=abc123 to specify the branch of code (required)" \
250
+ "\n\tuse COMMIT_ID=abc123 to specify the commit id of code (required)" \
251
251
  "\n\tuse CONTEXT=abc123 names the check on the PR (optional)" \
252
252
  "\n\tuse TARGET_URL={url} adds 'detail' hyperlink to check on the PR (optional)"
253
253
  task :error do
254
254
  status = 'error'
255
255
  token = ENV['GITHUB_TOKEN'].to_s.strip
256
256
  repo_org, repo_name = ENV['REPOSITORY'].to_s.strip.split('/')
257
- branch = ENV['BRANCH'].to_s.strip
257
+ commit_id = ENV['COMMIT_ID'].to_s.strip
258
258
 
259
259
  raise 'GITHUB_TOKEN is required' unless token
260
- raise 'Repository name is required' unless repo_name
261
- raise 'Branch name is required' unless branch
260
+ raise 'REPOSITORY is required' unless repo_name
261
+ raise 'COMMIT_ID is required' unless commit_id
262
262
 
263
263
  options = {}
264
264
  options[:context] = ENV['CONTEXT'].to_s.strip unless ENV['CONTEXT'].to_s.strip.empty?
265
265
  options[:target_url] = ENV['TARGET_URL'].to_s.strip unless ENV['TARGET_URL'].to_s.strip.empty?
266
266
 
267
- Dev::Git.new.commit_status(token:, repo_name:, branch:, status:, repo_org:, options:)
267
+ Dev::Git.new.commit_status(token:, repo_name:, commit_id:, status:, repo_org:, options:)
268
268
  end
269
269
  end
270
270
  end
@@ -284,24 +284,24 @@ module Dev
284
284
  desc 'Add failure status to commit' \
285
285
  "\n\tuse GITHUB_TOKEN=abc123 enables write options for the check (required)" \
286
286
  "\n\tuse REPOSITORY=abc123 to specify the repository (required)" \
287
- "\n\tuse BRANCH=abc123 to specify the branch of code (required)" \
287
+ "\n\tuse COMMIT_ID=abc123 to specify the commit id of code (required)" \
288
288
  "\n\tuse CONTEXT=abc123 names the check on the PR (optional)" \
289
289
  "\n\tuse TARGET_URL={url} adds 'detail' hyperlink to check on the PR (optional)"
290
290
  task :failure do
291
291
  status = 'failure'
292
292
  token = ENV['GITHUB_TOKEN'].to_s.strip
293
293
  repo_org, repo_name = ENV['REPOSITORY'].to_s.strip.split('/')
294
- branch = ENV['BRANCH'].to_s.strip
294
+ commit_id = ENV['COMMIT_ID'].to_s.strip
295
295
 
296
296
  raise 'GITHUB_TOKEN is required' unless token
297
- raise 'Repository name is required' unless repo_name
298
- raise 'Branch name is required' unless branch
297
+ raise 'REPOSITORY is required' unless repo_name
298
+ raise 'COMMIT_ID is required' unless commit_id
299
299
 
300
300
  options = {}
301
301
  options[:context] = ENV['CONTEXT'].to_s.strip unless ENV['CONTEXT'].to_s.strip.empty?
302
302
  options[:target_url] = ENV['TARGET_URL'].to_s.strip unless ENV['TARGET_URL'].to_s.strip.empty?
303
303
 
304
- Dev::Git.new.commit_status(token:, repo_name:, branch:, status:, repo_org:, options:)
304
+ Dev::Git.new.commit_status(token:, repo_name:, commit_id:, status:, repo_org:, options:)
305
305
  end
306
306
  end
307
307
  end
@@ -6,6 +6,6 @@ module Dev
6
6
  # Use 'v.v.v.pre.alpha.v' for pre-release vesions
7
7
  # Use 'v.v.v.beta.v for beta versions
8
8
  # Use semantic versioning for any releases (https://semver.org/)
9
- VERSION = '2.2.1.pre.alpha.3'.freeze
9
+ VERSION = '2.2.1.pre.alpha.4'.freeze
10
10
  end
11
11
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: firespring_dev_commands
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.1.pre.alpha.3
4
+ version: 2.2.1.pre.alpha.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Firespring