From 86085d4550bf04c7b7f68e2100ebcac3e0e931be Mon Sep 17 00:00:00 2001 From: "Marios S. Kyriakou" Date: Tue, 17 Jan 2023 00:32:39 +0200 Subject: [PATCH] Add a cron schedule in actions per month to create artifacts without any commit at 2023-02-01 00:00:00 then at 2023-03-01 00:00:00 then at 2023-04-01 00:00:00 then at 2023-05-01 00:00:00 then at 2023-06-01 00:00:00 ... Co-Authored-By: Elad Salomons --- .github/workflows/ccpp.yml | 6 +++++- .github/workflows/win32.yml | 6 +++++- .github/workflows/win64.yml | 6 +++++- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 9dc80b2..dc121b5 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -1,6 +1,10 @@ name: linux -on: [push] +on: + push: + pull_request: + schedule: + - cron: '0 0 1 * *' jobs: build: diff --git a/.github/workflows/win32.yml b/.github/workflows/win32.yml index 94b09ae..dd673c8 100644 --- a/.github/workflows/win32.yml +++ b/.github/workflows/win32.yml @@ -1,6 +1,10 @@ name: epanet2-win32 -on: [push] +on: + push: + pull_request: + schedule: + - cron: '0 0 1 * *' jobs: build: diff --git a/.github/workflows/win64.yml b/.github/workflows/win64.yml index c6802ae..560a4a3 100644 --- a/.github/workflows/win64.yml +++ b/.github/workflows/win64.yml @@ -1,6 +1,10 @@ name: epanet2-win64 -on: [push] +on: + push: + pull_request: + schedule: + - cron: '0 0 1 * *' jobs: build: