Files
test/.gitea/workflows/hello.yml
Martin Kudlacek 377f388e76
Some checks failed
Hello World / say_hello (push) Failing after 28s
WIP
2025-11-13 09:01:36 +01:00

18 lines
314 B
YAML

name: Hello World
on:
push:
branches: [ main ]
jobs:
say_hello:
runs-on: docker
steps:
- name: Checkout
uses: docker://alpine/git
with:
args: clone $GITEA_SERVER_URL/$GITEA_REPOSITORY .
- name: Say Hello
run: echo "Hello, world from Gitea Actions!"