Files
actions-laba-1/.gitea/workflows/example-action.yaml
2025-11-29 12:21:33 +03:00

17 lines
301 B
YAML

name: "Example action"
run-name: "Start example action"
on:
push:
jobs:
second-job:
runs-on: golang
steps:
- run: |
if [ ${{ gitea.actor }} == 'wwitchq' ]; then
echo "Hello, ${{ gitea.actor }}"
else
echo "Hello, Violetta"
fi