forked from jtarchie/github-pullrequest-resource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathin.rb
executable file
·74 lines (56 loc) · 1.78 KB
/
in.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/usr/bin/env ruby
require 'English'
require 'json'
require_relative 'base'
module Commands
class In < Commands::Base
attr_reader :destination
def initialize(destination:, input: Input.instance)
@destination = destination
super(input: input)
end
def output
id = pr['number']
branch_ref = "pr-#{pr['head']['ref']}"
raise 'PR has merge conflicts' if pr['mergeable'] == false && fetch_merge
system("git clone --depth 1 #{uri} #{destination} 1>&2")
raise 'git clone failed' unless $CHILD_STATUS.exitstatus.zero?
Dir.chdir(destination) do
raise 'git clone failed' unless system("git fetch -q origin pull/#{id}/#{remote_ref}:#{branch_ref} 1>&2")
system <<-BASH
git checkout #{branch_ref} 1>&2
git submodule update --init --recursive 1>&2
git config --add pullrequest.url #{pr['html_url']} 1>&2
git config --add pullrequest.id #{pr['number']} 1>&2
git config --add pullrequest.branch #{pr['head']['ref']} 1>&2
git config --add pullrequest.basebranch #{pr['base']['ref']} 1>&2
BASH
end
{
'version' => { 'ref' => ref, 'pr' => id.to_s },
'metadata' => [{ 'name' => 'url', 'value' => pr['html_url'] }]
}
end
private
def pr
@pr ||= Octokit.pull_request(input.source.repo, input.version.pr)
end
def uri
input.source.uri || "https://github.com/#{input.source.repo}"
end
def ref
input.version.ref
end
def remote_ref
fetch_merge ? 'merge' : 'head'
end
def fetch_merge
input.params.fetch_merge
end
end
end
if __FILE__ == $PROGRAM_NAME
destination = ARGV.shift
command = Commands::In.new(destination: destination)
puts JSON.generate(command.output)
end