forked from underscorgan/community_management
-
Notifications
You must be signed in to change notification settings - Fork 10
/
npc.rb
executable file
·54 lines (46 loc) · 1.82 KB
/
npc.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
#!/usr/bin/env ruby
# frozen_string_literal: true
require_relative 'octokit_utils'
require_relative 'options'
options = parse_options do |opts|
opts.on('-m', '--merge-conflicts', 'Comment / label PRs that have merge conflicts') { result[:merge_conflicts] = true }
opts.on('-N', '--no-op', 'No-op, dont actually edit the PRs') { result[:no_op] = true }
end
parsed = load_url(options)
util = OctokitUtils.new(options[:oauth])
if options[:no_op]
puts 'RUNNING IN NO-OP MODE'
else
puts 'MAKING CHANGES TO YOUR REPOS'
end
parsed.each do |_k, v|
next unless options[:merge_conflicts]
prs = util.fetch_pull_requests((v['github']).to_s)
prs.each do |pr|
# do we already have a label ?
pr_merges = util.does_pr_merge((v['github']).to_s, pr.number)
puts pr_merges
pr_has_label = util.does_pr_have_label((v['github']).to_s, pr.number, 'needs-rebase')
if pr_merges
# pr merges
# we have a label. should we remove the label if it is mergable
if pr_has_label
puts "#{m['github_namespace']} #{pr.number} removing label"
util.remove_label_from_pr((v['github']).to_s, pr.number, 'needs-rebase') unless options[:no_op]
end
# pr does not merge
elsif pr_has_label
# has label
puts "#{v['github']} #{pr.number} already labeled"
else
# pr does not have a label
puts "#{v['github']} #{pr.number} adding comment and label"
unless options[:no_op]
# do comment
util.add_comment_to_pr((v['github']).to_s, pr.number, "Thanks @#{pr.user.login} for your work, but can't be merged as it has conflicts. Please rebase them on the current main, fix the conflicts and repush here. https://git-scm.com/book/en/v2/Git-Branching-Rebasing")
# do label
util.add_label_to_pr((v['github']).to_s, pr.number, 'needs-rebase')
end
end
end
end