Nightly CI (Master) #248
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-FileCopyrightText: 2026 Jankari Tech Pvt. Ltd. | |
| # SPDX-License-Identifier: AGPL-3.0-or-later | |
| name: Nightly CI (Master) | |
| # workflow can be scheduled ONLY from DEFAULT branch | |
| # > This event will only trigger a workflow run if the workflow file is on the default branch. | |
| # See: https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#schedule | |
| on: | |
| schedule: | |
| - cron: '0 22 * * *' # run at 10 PM UTC | |
| jobs: | |
| nightly-builds: | |
| uses: ./.github/workflows/nightly-shared.yaml | |
| secrets: inherit | |
| with: | |
| branch: master | |
| nextcloud_versions: '33 34 master' | |
| php_versions: '8.3 8.4 8.5' | |
| app_upgrade_nc_versions: '34' |