2022-01-13 15:26:47 +01:00
|
|
|
|
import sys
|
|
|
|
|
import requests
|
|
|
|
|
|
|
|
|
|
# need to install via pip
|
|
|
|
|
import hjson
|
|
|
|
|
|
|
|
|
|
'''Looks like'''
|
|
|
|
|
'''{ pull_number: 26,
|
|
|
|
|
conflictPrs:
|
|
|
|
|
[ { number: 25,
|
|
|
|
|
files: [ '.github/workflows/testfile' ],
|
|
|
|
|
conflicts: [ '.github/workflows/testfile' ] }
|
|
|
|
|
{ number: 24,
|
|
|
|
|
files: [ '.github/workflows/testfile' ],
|
|
|
|
|
conflicts: [ '.github/workflows/testfile' ] } ] }'''
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
|
input = sys.argv[1]
|
|
|
|
|
print(input)
|
|
|
|
|
j_input = hjson.loads(input)
|
|
|
|
|
print(j_input)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
our_pr_num = j_input['pull_number']
|
|
|
|
|
our_pr_label = get_label(our_pr_num)
|
|
|
|
|
conflictPrs = j_input['conflictPrs']
|
|
|
|
|
|
|
|
|
|
good = []
|
|
|
|
|
bad = []
|
|
|
|
|
|
|
|
|
|
for conflict in conflictPrs:
|
|
|
|
|
this_pr_num = conflict['number']
|
|
|
|
|
print(this_pr_num)
|
|
|
|
|
|
2022-01-20 17:06:37 +01:00
|
|
|
|
r = requests.get(f'https://api.github.com/repos/dashpay/dash/pulls/{this_pr_num}')
|
2022-01-13 15:26:47 +01:00
|
|
|
|
print(r.json()['head']['label'])
|
2022-01-20 17:06:37 +01:00
|
|
|
|
|
|
|
|
|
mergable_state = r.json()['mergeable_state']
|
|
|
|
|
if mergable_state == "dirty":
|
|
|
|
|
print(f'{this_pr_num} needs rebase. Skipping conflict check')
|
|
|
|
|
continue
|
|
|
|
|
|
2022-01-13 15:26:47 +01:00
|
|
|
|
r = requests.get(f'https://github.com/dashpay/dash/branches/pre_mergeable/{our_pr_label}...{get_label(this_pr_num)}')
|
|
|
|
|
if "These branches can be automatically merged." in r.text:
|
|
|
|
|
good.append(this_pr_num)
|
|
|
|
|
elif "Can’t automatically merge" in r.text:
|
|
|
|
|
bad.append(this_pr_num)
|
|
|
|
|
else:
|
|
|
|
|
raise Exception("not mergeable or unmergable!")
|
|
|
|
|
|
|
|
|
|
print("Not conflicting PRs: ", good)
|
|
|
|
|
|
|
|
|
|
print("Conflicting PRs: ", bad)
|
|
|
|
|
if len(bad) > 0:
|
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def get_label(pr_num):
|
|
|
|
|
return requests.get(f'https://api.github.com/repos/dashpay/dash/pulls/{pr_num}').json()['head']['label']
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
main()
|