1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
From fba50951a5e937c2feacba2c68ccc53a18d99207 Mon Sep 17 00:00:00 2001
From: Mike Walters <mike@flomp.net>
Date: Sat, 9 Oct 2021 14:19:38 +0100
Subject: [PATCH 21/31] Run actions workflow on PR & schedule
---
.github/workflows/build.yml | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index e00be0e..86af296 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -1,6 +1,12 @@
name: Build
-on: [push]
+on:
+ push:
+ pull_request:
+
+ # Run every friday
+ schedule:
+ - cron: 1 12 * * 5
env:
BUILD_TYPE: Release
--
2.35.1
|