This commit is contained in:
2025-09-29 20:12:34 +08:00
parent 02c932dbfc
commit 3c3a0e1805

View File

@@ -0,0 +1,15 @@
# .gitea/workflows/manual-test.yml
name: Manual Test
on:
workflow_dispatch:
inputs:
who:
description: "Say hi to"
required: false
default: "world"
jobs:
echo:
runs-on: self-hosted
steps:
- run: echo "Hello ${{ inputs.who }}"