Files
Christos Lachanas d2925b0d8b
Some checks failed
cum / cum (push) Failing after 1m51s
Update .gitea/workflows/work.yaml
2024-12-08 01:29:05 +00:00

16 lines
406 B
YAML

on:
workflow_run:
workflows: [cum]
types: [completed]
jobs:
on-success:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- run: echo 'The triggering workflow passed'
on-failure:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'failure' }}
steps:
- run: echo 'The triggering workflow failed'