ci: ping blink on slack on ci failures (#19435)

im experimenting with getting blink to track flakes for us in
coder/internal, it worked when kyle and I pinged it by hand, so let's
try this too.
This commit is contained in:
Ethan
2025-08-20 06:19:29 +00:00
committed by GitHub
parent 60d611fc78
commit c310a3202b
2 changed files with 14 additions and 0 deletions
+7
View File
@@ -1582,6 +1582,13 @@ jobs:
"type": "mrkdwn",
"text": "*View failure:* <${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|Click here>"
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "<@U08TJ4YNCA3> investigate this CI failure. Check logs, search for existing issues, use git blame to find who last modified failing tests, create issue in coder/internal (not public repo), use title format \"flake: TestName\" for flaky tests, and assign to the person from git blame."
}
}
]
}' ${{ secrets.CI_FAILURE_SLACK_WEBHOOK }}
+7
View File
@@ -203,6 +203,13 @@ jobs:
"type": "mrkdwn",
"text": "*View failure:* <${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}|Click here>"
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "<@U08TJ4YNCA3> investigate this CI failure. Check logs, search for existing issues, use git blame to find who last modified failing tests, create issue in coder/internal (not public repo), use title format \"flake: TestName\" for flaky tests, and assign to the person from git blame."
}
}
]
}' ${{ secrets.CI_FAILURE_SLACK_WEBHOOK }}