30 lines
753 B
Diff
30 lines
753 B
Diff
From 03f474d741e654d7ca3f6753f7e9ed8132dacdd7 Mon Sep 17 00:00:00 2001
|
|
From: Gabriel Kihlman <g.kihlman@yubico.com>
|
|
Date: Fri, 10 Jan 2020 12:42:23 +0100
|
|
Subject: [PATCH 17/25] Schedule scans at least once a week
|
|
|
|
Signed-off-by: Gustavo B. Schenkel <gustavo.schenkel@gmail.com>
|
|
---
|
|
.github/workflows/scan.yml | 6 +++++-
|
|
1 file changed, 5 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/.github/workflows/scan.yml b/.github/workflows/scan.yml
|
|
index f8e54a1..ec6ba52 100644
|
|
--- a/.github/workflows/scan.yml
|
|
+++ b/.github/workflows/scan.yml
|
|
@@ -1,6 +1,10 @@
|
|
name: static code analysis
|
|
|
|
-on: [push]
|
|
+on:
|
|
+ push:
|
|
+ schedule:
|
|
+ - cron: '0 0 * * 1'
|
|
+
|
|
env:
|
|
SCAN_IMG:
|
|
yes-docker-local.artifactory.in.yubico.org/static-code-analysis/c:v1
|
|
--
|
|
2.32.0
|
|
|