From: Francesco Chemolli <5175948+kinkie@users.noreply.github.com> Date: Tue, 31 Dec 2024 23:18:39 +0000 (+0000) Subject: CI: Add workflow_dispatch to workflows that still lack it (#1976) X-Git-Tag: SQUID_7_0_1~10 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b56774dd09224b6aa8513e24cdb7634be297a88e;p=thirdparty%2Fsquid.git CI: Add workflow_dispatch to workflows that still lack it (#1976) Manually triggering a workflow rerun is handy when troubleshooting. Our coverity-scan.yaml workflow already has a workflow_dispatch trigger. --- diff --git a/.github/workflows/quick.yaml b/.github/workflows/quick.yaml index aad03461d4..2383244752 100644 --- a/.github/workflows/quick.yaml +++ b/.github/workflows/quick.yaml @@ -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. diff --git a/.github/workflows/slow.yaml b/.github/workflows/slow.yaml index 728445b656..4b72314050 100644 --- a/.github/workflows/slow.yaml +++ b/.github/workflows/slow.yaml @@ -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 }}