diff options
author | Joshua M. Boniface <joshua@boniface.me> | 2024-03-04 00:36:39 -0500 |
---|---|---|
committer | Joshua M. Boniface <joshua@boniface.me> | 2024-03-04 00:36:39 -0500 |
commit | b5974eed5843b1b43bcee431b377aad8f31f27b1 (patch) | |
tree | d8d7fff2942bb134c48484cad7869e9006c89463 /.github/workflows | |
parent | Add default inputs.version of master (diff) | |
download | jellyfin-packaging-b5974eed5843b1b43bcee431b377aad8f31f27b1.tar.gz jellyfin-packaging-b5974eed5843b1b43bcee431b377aad8f31f27b1.tar.bz2 jellyfin-packaging-b5974eed5843b1b43bcee431b377aad8f31f27b1.zip |
Add weekly unstable build timer
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/release-build.yaml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/release-build.yaml b/.github/workflows/release-build.yaml index b174444..0e6d60c 100644 --- a/.github/workflows/release-build.yaml +++ b/.github/workflows/release-build.yaml @@ -1,7 +1,11 @@ name: "Release Build" on: + schedule: + # Weekly unstable trigger on Monday at 05:00 GMT + - cron: '0 5 * * 1' workflow_dispatch: + # Manual trigger from bot inputs: version: required: true |