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