Skip to content

Commit 3b72e75

Browse files
authored
chore(ci): allow triggering manually
When working on a feature in a fork, it is very helpful to be able to check things before annoying everyone upstream with endless PR updates. With this simple change it is possible to manually trigger CI on any branch from GitHub Actions UI. Pull-Request: #5939.
1 parent 010388d commit 3b72e75

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.github/workflows/cargo-audit.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: cargo audit
22
on:
33
schedule:
44
- cron: '0 0 * * *'
5+
workflow_dispatch:
56

67
jobs:
78
audit:

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
push:
66
branches:
77
- master
8+
workflow_dispatch:
89

910
concurrency:
1011
group: ${{ github.workflow }}-${{ github.ref }}

0 commit comments

Comments
 (0)