This commit is contained in:
2026-09-19 01:20:50 -05:00
parent b95e99370f
commit 0b79ac86f7
7 changed files with 280 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
# Runner smoke test. Runs on every push/PR to confirm the act_runner
# (see gitea/docker-compose.yml + gitea/config.yaml) is picking up jobs.
name: hello-world
on:
push:
pull_request:
workflow_dispatch:
jobs:
hello:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Say hello
run: echo "Hello from Gitea Actions on ${{ gitea.server_url }}"
- name: Show context
run: |
echo "repo=${{ gitea.repository }} ref=${{ gitea.ref }} sha=${{ gitea.sha }}"
node --version