Add .gitea/workflows/work.yaml
All checks were successful
cum / cum (push) Successful in 22s

This commit is contained in:
2024-12-08 01:28:38 +00:00
parent 8af8c010b1
commit 83dbb2e736

View File

@ -0,0 +1,16 @@
on:
workflow_run:
workflows: [Build]
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'