Skip to content

Commit

Permalink
line length
Browse files Browse the repository at this point in the history
  • Loading branch information
eggrobin committed Jan 21, 2024
1 parent 36be2d6 commit fca3d9d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions py/pipeline-workflow/check-draft-status.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,12 @@
draft = event['pull_request']['draft']
# Caution the reader that the Age values are placeholders.
if pipeline_label == "pipeline-provisionally-assigned":
print(f"::warning file=unicodetools/data/ucd/dev/DerivedAge.txt,title=Not in the {version} pipeline::" +
print("::warning file=unicodetools/data/ucd/dev/DerivedAge.txt,"
f"title=Not in the {version} pipeline::" +
PROVISIONALLY_ASSIGNED_AGE_NOTICE)
else: # Not even provisionally assigned.
print(f"::warning file=unicodetools/data/ucd/dev/DerivedAge.txt,title=Not in the {version} pipeline::" +
print("::warning file=unicodetools/data/ucd/dev/DerivedAge.txt,"
f"title=Not in the {version} pipeline::" +
UNREVIEWED_AGE_NOTICE)
if not draft:
print("::error title=PR must be draft::"
Expand Down

0 comments on commit fca3d9d

Please sign in to comment.