Skip to content

Commit

Permalink
fix: link in nightly_detect_failure.yml (#766)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ruben-VandeVelde authored Apr 25, 2024
1 parent 4a54f26 commit d982205
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nightly_detect_failure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@ jobs:
}
response = client.get_messages(request)
messages = response['messages']
if not messages or messages[0]['content'] != "✅ The latest CI for Std's branch#nightly-testing has succeeded!":
if not messages or messages[0]['content'] != "✅ The latest CI for Std's [`nightly-testing`](https://github.com/leanprover/std4/tree/nightly-testing) branch has succeeded!":
# Post the success message
request = {
'type': 'stream',
'to': 'nightly-testing',
'topic': 'Std status updates',
'content': "✅ The latest CI for Std's branch#nightly-testing has succeeded!"
'content': "✅ The latest CI for Std's [`nightly-testing`](https://github.com/leanprover/std4/tree/nightly-testing) branch has succeeded!"
}
result = client.send_message(request)
print(result)
Expand Down

0 comments on commit d982205

Please sign in to comment.