Files
rustfs-s3-toolkit/.gitea/workflows/manual-test.yml
hotwa 5342247c10
Some checks failed
Build and Push to ACR / docker (push) Failing after 7s
commit test
2025-09-30 14:52:17 +08:00

17 lines
280 B
YAML

# .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: docker
steps:
- run: echo "Hello ${{ inputs.who }}"