mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
18 lines
587 B
YAML
18 lines
587 B
YAML
name: CI Status
|
|
on:
|
|
workflow_run:
|
|
workflows: ["PR CI", "Post-Merge Release", "Nightly Snapshot"]
|
|
types: [completed]
|
|
|
|
jobs:
|
|
report:
|
|
name: Report CI Status
|
|
runs-on: builder
|
|
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
|
|
steps:
|
|
- name: Report Failure
|
|
run: |
|
|
echo "❌ Workflow Failed: ${{ github.event.workflow_run.name }}"
|
|
echo "Branch: ${{ github.event.workflow_run.head_branch }}"
|
|
echo "Commit: ${{ github.event.workflow_run.head_sha }}"
|
|
echo "URL: ${{ github.event.workflow_run.html_url }}" |