Files
test/.gitea/workflows/hello.yml
Martin Kudlacek 487b91db1f
Some checks failed
Hello World / say_hello (push) Failing after 1s
WIP
2025-11-13 08:40:09 +01:00

18 lines
351 B
YAML

name: Hello World
on:
push:
branches: [ main ]
jobs:
say_hello:
runs-on: docker
steps:
- name: Manual Checkout
run: |
git clone https://${{ gitea.server_url }}/${{ gitea.repository }} .
git checkout ${{ gitea.ref_name }}
- name: Say Hello
run: echo "Hello, world from Gitea Actions!"