Skip to content

Commit 8adf1e3

Browse files
committed
github actions: validate-kernel-commits: Add --check-cves
This causes check_kernel_commits.py to check the kernel's vulns database to ensure the CVEs referenced in the commit are correct, check for missing CVE references, and to add CVE references to suggested upstream bugfixes
1 parent 11f36fa commit 8adf1e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/validate-kernel-commits.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
id: check-kernel-commits
4040
run: |
4141
set +e # Don't exit on error, we want to capture the output
42-
python3 check_kernel_commits.py --repo . --pr_branch "${{ github.head_ref }}" --base_branch "${{ github.base_ref }}" --markdown | tee result.txt
42+
python3 check_kernel_commits.py --repo . --pr_branch "${{ github.head_ref }}" --base_branch "${{ github.base_ref }}" --markdown --check-cves | tee result.txt
4343
EXIT_CODE=$?
4444
4545
# Check if the script failed

0 commit comments

Comments
 (0)