From: Grant Slater Date: Tue, 29 Aug 2023 08:20:48 +0000 (+0100) Subject: Enable GitHub Actions manual workflow_dispatch trigger X-Git-Url: https://git.openstreetmap.org/chef.git/commitdiff_plain/3e44d17331b849d87d5fc1737c22fb712d8cd76d Enable GitHub Actions manual workflow_dispatch trigger --- diff --git a/.github/workflows/cookstyle.yml b/.github/workflows/cookstyle.yml index 43494fc14..78b79aa79 100644 --- a/.github/workflows/cookstyle.yml +++ b/.github/workflows/cookstyle.yml @@ -3,6 +3,7 @@ name: Cookstyle on: - push - pull_request + - workflow_dispatch concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} diff --git a/.github/workflows/test-kitchen.yml b/.github/workflows/test-kitchen.yml index 33af67104..3699100b3 100644 --- a/.github/workflows/test-kitchen.yml +++ b/.github/workflows/test-kitchen.yml @@ -3,6 +3,7 @@ name: Test Kitchen on: - push - pull_request + - workflow_dispatch concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}