]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
CI: Add workflow_dispatch to workflows that still lack it (#1976)
authorFrancesco Chemolli <5175948+kinkie@users.noreply.github.com>
Tue, 31 Dec 2024 23:18:39 +0000 (23:18 +0000)
committerSquid Anubis <squid-anubis@squid-cache.org>
Thu, 2 Jan 2025 09:26:24 +0000 (09:26 +0000)
Manually triggering a workflow rerun is handy when troubleshooting. Our
coverity-scan.yaml workflow already has a workflow_dispatch trigger.

.github/workflows/quick.yaml
.github/workflows/slow.yaml

index aad03461d4a26379b463351c7521e8ad48d9c9b0..2383244752a1795d91220eadc48c79ec00ad011b 100644 (file)
@@ -16,6 +16,9 @@ on:
     # test PRs targeting this branch code
     branches: [ "master" ]
 
+  # allows to run this workflow manually from the Actions tab
+  workflow_dispatch:
+
 concurrency:
   # Cancel ongoing tests in case of push to the same PR or staging branch,
   # but let previous master commit tests complete.
index 728445b65608fd47aabbf2ae791fa5cd09ba02a8..4b723140504512926f30375773c3abd566ca90d5 100644 (file)
@@ -14,6 +14,9 @@ on:
   push:
     branches: [ "auto" ]
 
+  # allows to run this workflow manually from the Actions tab
+  workflow_dispatch:
+
 concurrency:
   # Cancel ongoing tests in case of push to staging branch.
   group: ${{ github.workflow }}-${{ github.ref }}