watcher/.gitea/workflows/push.yml

13 lines
327 B
YAML
Raw Normal View History

2024-04-12 13:32:32 +08:00
name: push image
run-name: ${{ github.actor }} is testing out Gitea Actions 🚀
on:
workflow_run:
2024-04-12 13:54:55 +08:00
workflows: [Build image]
2024-04-12 13:32:32 +08:00
types: [completed]
jobs:
on-success:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- run: echo 'The triggering workflow passed'