Skip to content

Commit

Permalink
github actions: run audit on all pull requests
Browse files Browse the repository at this point in the history
The `pull_request` trigger was redundant with the `push` trigger.
However, it's nice to have audit feedback on any pull request,
regardless of whether it touches dependencies, in order to bring
new issues to attention. Therefore run on pull requests against
the usual default branch names.
  • Loading branch information
rillian committed Apr 11, 2024
1 parent 931051d commit 1ae5421
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ on:
- '**/Cargo.toml'
- '**/Cargo.lock'
pull_request:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
branches:
- main
- master
schedule:
- cron '12 13 2 * *'

Expand Down

0 comments on commit 1ae5421

Please sign in to comment.