watcher/.gitea/workflows/push.yml
timerzz 06988bbcc2
All checks were successful
build image / Explore-Gitea-Actions (push) Successful in 6s
feat 添加actions
2024-04-12 13:32:32 +08:00

13 lines
327 B
YAML

name: push image
run-name: ${{ github.actor }} is testing out Gitea Actions 🚀
on:
workflow_run:
workflows: [build image]
types: [completed]
jobs:
on-success:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- run: echo 'The triggering workflow passed'