Skip to content

Commit

Permalink
CI: Add workflow_dispatch to workflows that still lack it (#1976)
Browse files Browse the repository at this point in the history
Manually triggering a workflow rerun is handy when troubleshooting. Our
coverity-scan.yaml workflow already has a workflow_dispatch trigger.
  • Loading branch information
kinkie authored and squid-anubis committed Jan 2, 2025
1 parent 32218e0 commit b56774d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/quick.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/slow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit b56774d

Please sign in to comment.