From 6c3ccadde16adcfb881c4cbc142e723ff3e04723 Mon Sep 17 00:00:00 2001 From: Hamish Coleman Date: Mon, 1 Nov 2021 11:28:13 +0000 Subject: [PATCH] Try to make debug workflow demand triggerable The docs claim that by adding the right `on:` event, the job can be manually triggered from the github UI. https://docs.github.com/en/actions/learn-github-actions/events-that-trigger-workflows#workflow_dispatch Tests show that it doesnt work, but I can leave it here for reference. --- .github/workflows/debug.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index 6719428..238e62f 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -1,10 +1,8 @@ --- name: Debug -# yamllint disable-line rule:truthy on: - push: - pull_request: + workflow_dispatch: jobs: