From d6af00fb3139c0e1e768c37d57c9f65b18ede76e Mon Sep 17 00:00:00 2001 From: richardoswald Date: Mon, 9 Jun 2025 09:01:40 -0500 Subject: [PATCH] Update .gitea/workflows/hugo-build.yml --- .gitea/workflows/hugo-build.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/hugo-build.yml b/.gitea/workflows/hugo-build.yml index ef1b86d..a55d8fb 100644 --- a/.gitea/workflows/hugo-build.yml +++ b/.gitea/workflows/hugo-build.yml @@ -1,16 +1,19 @@ name: Hugo Update Pipeline run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀 on: - repository_dispatch: - types: - - update-submodule + workflow_dispatch: + inputs: + additionalProp1: + required: true + default: 'cat' + type: string jobs: Explore-Gitea-Actions: runs-on: ubuntu-latest steps: - name: echo dispatch inputs - run: echo ${inputs.additionalProp1} + run: echo ${{ inputs.additionalProp1 }} - name: Check out code uses: actions/checkout@v4 with: