From 6bca781304fc81c05bcf8575b8cd79d79b06c9d1 Mon Sep 17 00:00:00 2001 From: vasfvitor Date: Sat, 28 Oct 2023 17:10:44 -0300 Subject: [PATCH] with workflow dispatch --- .github/workflows/trigger-workflow.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.github/workflows/trigger-workflow.yml b/.github/workflows/trigger-workflow.yml index e06710062cf..d746418aae3 100644 --- a/.github/workflows/trigger-workflow.yml +++ b/.github/workflows/trigger-workflow.yml @@ -3,6 +3,20 @@ name: update-docs-modified on: repository_dispatch: types: [dispatch-test] + workflow_dispatch: + inputs: + gitName: + description: 'git name for PR' + required: false + default: 'tauri-bot' + gitEmail: + description: 'git email for PR' + required: false + default: 'tauri-bot@tauri.studio' + tauriBranch: + description: 'tauri branch to pull' + required: false + default: 1.x jobs: update-docs: @@ -13,5 +27,5 @@ jobs: uses: actions/checkout@v3 with: repository: vasfvitor/tauri - ref: 1.x + ref: ${{inputs.tauriBranch}} path: tauri