diff --git a/py/pipeline-workflow/check-draft-status.py b/py/pipeline-workflow/check-draft-status.py index 56a8f313d..c1bd2e091 100644 --- a/py/pipeline-workflow/check-draft-status.py +++ b/py/pipeline-workflow/check-draft-status.py @@ -13,5 +13,7 @@ print(event) draft = event['pull_request']['draft'] if not draft: - print("::error title=PR must be draft::PRs for character additions must be draft unless approved for the upcoming version of Unicode.") + print("::error title=PR must be draft::" + "PRs for character additions must be draft unless approved for " + "the upcoming version of Unicode.") exit(1) diff --git a/py/pipeline-workflow/check-l2-document.py b/py/pipeline-workflow/check-l2-document.py index f3ccd43c6..11e421817 100644 --- a/py/pipeline-workflow/check-l2-document.py +++ b/py/pipeline-workflow/check-l2-document.py @@ -8,5 +8,7 @@ print(event) pr_body = event['pull_request']['body'] if not re.search(r"L2/\d\d-\d\d\d", pr_body): - print("::error title=Need proposal document::PRs for character additions must include a link to an L2 document in the PR description.") + print("::error title=Need proposal document::" + "PRs for character additions must include a link to an L2 document in" + " the PR description.") exit(1) diff --git a/py/pipeline-workflow/check-utc-decision.py b/py/pipeline-workflow/check-utc-decision.py index 5a8e610d4..1b98d63af 100644 --- a/py/pipeline-workflow/check-utc-decision.py +++ b/py/pipeline-workflow/check-utc-decision.py @@ -8,5 +8,7 @@ print(event) pr_body = event['pull_request']['body'] if not re.search(r"UTC-\d\d\d-[MC]\d", pr_body): - print("::error title=Need UTC decision::PRs for approved or provisionally assigned must include a link to a UTC decision.") + print("::error title=Need UTC decision::" + "PRs for approved or provisionally assigned must include a link to a " + "UTC decision.") exit(1) diff --git a/py/pipeline-workflow/compare-repertoire.py b/py/pipeline-workflow/compare-repertoire.py index 742c6aa15..f420cb08e 100644 --- a/py/pipeline-workflow/compare-repertoire.py +++ b/py/pipeline-workflow/compare-repertoire.py @@ -8,12 +8,14 @@ labels = event['pull_request']['labels'] pipeline_labels = [label for label in labels if label['name'].startswith('pipeline-')] if not pipeline_labels: - print("::error title=Missing pipeline label::PRs for character additions must have a pipeline label.") + print("::error title=Missing pipeline label::" + "PRs for character additions must have a pipeline label.") exit(1) if len(pipeline_labels) > 1: - print("::error title=Multiple pipeline labels::Only one pipeline-* label must be applied.") + print("::error title=Multiple pipeline labels::" + "Only one pipeline-* label must be applied.") exit(1) label = pipeline_labels[0] print("Labeled", label) with open(os.environ['GITHUB_OUTPUT'], 'a') as f: - print("pipeline-label=" + label['name'], file=f) \ No newline at end of file + print("pipeline-label=" + label['name'], file=f)