blob: 45ca3996b95861221a4ac3697f8cd4b8bc5942ec [file] [log] [blame]
name: nightly_trigger_24.lts.1+
on:
schedule:
# GMT timezone.
- cron: '0 10 * * *'
workflow_dispatch:
jobs:
trigger_24:
permissions:
actions: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: kaidokert/checkout@v3.5.999
with:
fetch-depth: 1
ref: 24.lts.1+
persist-credentials: false
- name: Trigger Nightly
run: |
set -x
gh workflow run android_24.lts.1+ --ref 24.lts.1+ -f nightly=true
gh workflow run evergreen_24.lts.1+ --ref 24.lts.1+ -f nightly=true
gh workflow run linux_24.lts.1+ --ref 24.lts.1+ -f nightly=true
gh workflow run raspi-2_24.lts.1+ --ref 24.lts.1+ -f nightly=true
gh workflow run win32_24.lts.1+ --ref 24.lts.1+ -f nightly=true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}