mirror of
https://github.com/blackboxprogramming/lucidia.git
synced 2026-03-17 03:57:13 -05:00
21 lines
511 B
YAML
21 lines
511 B
YAML
name: CI Failure Tracker
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ["CORE CI"]
|
|
types: [completed]
|
|
|
|
jobs:
|
|
report:
|
|
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/github-script@v7
|
|
with:
|
|
script: |
|
|
await github.rest.issues.create({
|
|
...context.repo,
|
|
title: "CI failed: " + context.payload.workflow_run.name,
|
|
body: context.payload.workflow_run.html_url
|
|
})
|