From 3d0f78e280d1820d5ba14b9265dbfa283e6890be Mon Sep 17 00:00:00 2001 From: Mindfang Date: Mon, 15 Jan 2024 14:04:31 -0600 Subject: [PATCH] Testing actions --- .gitea/workflows/test.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitea/workflows/test.yaml diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml new file mode 100644 index 0000000..25caa1f --- /dev/null +++ b/.gitea/workflows/test.yaml @@ -0,0 +1,16 @@ +# action.yml +name: "Hello World" +description: "Greet someone and record the time" +inputs: + who-to-greet: # id of input + description: "Who to greet" + required: true + default: "World" +outputs: + time: # id of output + description: "The time we greeted you" +runs: + using: "docker" + image: "Dockerfile" + args: + - ${{ inputs.who-to-greet }}