Skip to content

Commit 4746575

Browse files
authored
Run audit workflow on push to branches (rust-lang#1944)
1 parent aa900dc commit 4746575

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/audit.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@
55
# 2. Checks Rust-Sec registry for security advisories.
66

77
name: Cargo Audit
8-
on: [pull_request]
8+
on:
9+
pull_request:
10+
push:
11+
# Run on changes to branches but not tags.
12+
branches:
13+
- '**'
914

1015
jobs:
1116
audit:

0 commit comments

Comments
 (0)