Skip to content

chore: test md template #603

chore: test md template

chore: test md template #603

Workflow file for this run

name: status step
on:
workflow_dispatch:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 3
steps:
- run: echo "$COMMIT_MESSAGES"
env:
COMMIT_MESSAGES: ${{ toJson(github.event.commits.*.message) }}
- run: echo "success() run when none of previous steps have failed or been canceled"
if: success()
- run: echo "always() run even cancelled. it runs only when critical failure prevents the task."
if: always()
- run: echo "cancelled() run when Workflow cancelled."
if: cancelled()
- run: echo "failure() run when any previous step of a job fails."
if: failure()