From 8cc04f1192e60496e485c769f04fe1c94abb14ea Mon Sep 17 00:00:00 2001 From: "Randal S. Harisch" Date: Sat, 2 Sep 2023 00:25:42 -0600 Subject: [PATCH] Changed type to workflow_dispatch --- .gitea/workflows/test.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 1011e5b..9fd8e2c 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -1,7 +1,14 @@ # .gitea/workflows/build.yaml name: Gitea Actions Demo run-name: ${{ github.actor }} is testing out Gitea Actions -on: [push] +on: + workflow_dispatch: + inputs: + radotext: + description: enter random text + type: string + required: false + jobs: Explore-Gitea-Actions: runs-on: ubuntu-latest