Files
action-test/.gitea/workflows/hello-world.yml
T
jbrechtel 2ece894785
Hello World / hello (push) Has been cancelled
Add hello-world Gitea Actions workflow
2026-06-01 10:38:52 -04:00

11 lines
183 B
YAML

name: Hello World
on: [push]
jobs:
hello:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Say hello
run: echo "Hello, Gitea Actions!"