diff --git a/.github/workflow_data/webhook.py b/.github/workflow_data/webhook.py index 1504a5a84..9d9951787 100644 --- a/.github/workflow_data/webhook.py +++ b/.github/workflow_data/webhook.py @@ -43,9 +43,9 @@ else: desc = desc.rsplit("\n", 1)[0] + f"\n+ {count - i} more commits" max_length_reached = True - is_building = "nobuild" not in commit['message'] + is_building = "--nobuild" in commit['message'] - desc+= f"Build in progress for this commit: {is_building}" + desc+= f"\nNobuild flag active: {is_building}" url = event["compare"] color = 16723712 if event["forced"] else 3669797