We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63c657b commit 330d51dCopy full SHA for 330d51d
review-tools/ghmerge
@@ -180,6 +180,7 @@ from __future__ import print_function
180
import json, sys
181
rtm_set=0
182
urgent_set=0
183
+has_hold=0
184
input = json.load(sys.stdin)
185
# Dont do this check if its not for the openssl repo
186
if (input["base"]["repo"]["name"] != "openssl"):
@@ -189,8 +190,14 @@ for l in input["labels"]:
189
190
rtm_set=1
191
if (l["name"] == "severity: urgent"):
192
urgent_set=1
193
+ if (l["name"] == "hold: committer discussion"):
194
+ has_hold=1
195
+
196
if (rtm_set == 0 and urgent_set == 0):
197
print("Not ready to merge")
198
199
+if (has_hold == 1):
200
+ print("Not ready to merge")
201
' <$PR_URL_CONTENTS)
202
203
if [ "$REPO_CHECK" == "Not ready to merge" ]
0 commit comments