mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-11-09 13:44:29 +08:00
testing new workflow
This commit is contained in:
parent
fbaf6d12c9
commit
b481f8e145
1 changed files with 16 additions and 0 deletions
16
.github/workflows/comment-failed-pr.yml
vendored
Normal file
16
.github/workflows/comment-failed-pr.yml
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
on:
|
||||
workflow_run:
|
||||
workflows: [PR Check]
|
||||
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'
|
||||
Loading…
Add table
Reference in a new issue