summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2024-04-29 13:21:35 +0100
committerDaniil Baturin <daniil@baturin.org>2024-04-29 13:37:51 +0100
commit919e100d91255d94f25cae7df77a28366f8d1af7 (patch)
treef7f6bd414fa94c876548ad7d876943bdc25f34e0
parent52cd1d75d7fb5e0c9fc087c73991bcfdb531fc33 (diff)
downloadcommunity.vyos.net-919e100d91255d94f25cae7df77a28366f8d1af7.tar.gz
community.vyos.net-919e100d91255d94f25cae7df77a28366f8d1af7.zip
Make the CI workflow run on push for the production branch
-rw-r--r--.github/workflows/main.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 6e91c11..d59d483 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -2,13 +2,13 @@
name: CI
-# Controls when the action will run. Triggers the workflow on push or pull request
-# events but only for the master branch
+# Controls when the action will run.
+# We run this workflow on pushes and also every night to pick up fresh nightly builds
on:
push:
- branches: [ main ]
- pull_request:
- branches: [ main ]
+ branches:
+ - main
+ - production
schedule:
- cron: "0 3 * * *"
workflow_dispatch: