From bbb2107d5f23e5a4bce73b14ea0a8f78a1c8f60a Mon Sep 17 00:00:00 2001 From: WerWolv Date: Sun, 19 Mar 2023 16:21:46 +0100 Subject: [PATCH] git: Always execute dispatch --- .github/workflows/dispatch.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/dispatch.yml b/.github/workflows/dispatch.yml index fc475d1..fc6410a 100644 --- a/.github/workflows/dispatch.yml +++ b/.github/workflows/dispatch.yml @@ -8,11 +8,7 @@ on: repository_dispatch: types: [run_tests] workflow_dispatch: - inputs: - generate_docs: - description: "Regenerate docs" - required: false - type: boolean + jobs: tests: @@ -29,14 +25,8 @@ jobs: with: submodules: recursive - - name: 📄 Check changed include files - id: changed-includes - uses: tj-actions/changed-files@v35 - with: - files: includes/**/*.pat - - name: ✉️ Run Documentation generator - if: ${{ env.DISPATCH_TOKEN != '' && (steps.changed-includes.outputs.any_changed == 'true' || inputs.generate_docs) }} + if: ${{ env.DISPATCH_TOKEN != '' }} uses: mvasigh/dispatch-action@main with: token: ${{ secrets.DISPATCH_TOKEN }}