nightly_trigger_25.lts.1+ #137
This file contains 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
name: nightly_trigger_25.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/[email protected] | |
with: | |
fetch-depth: 1 | |
ref: 25.lts.1+ | |
persist-credentials: false | |
- name: Trigger Nightly | |
run: | | |
set -x | |
gh workflow run android_25.lts.1+ --ref 25.lts.1+ -f nightly=true | |
gh workflow run evergreen_25.lts.1+ --ref 25.lts.1+ -f nightly=true | |
gh workflow run linux_25.lts.1+ --ref 25.lts.1+ -f nightly=true | |
gh workflow run raspi-2_25.lts.1+ --ref 25.lts.1+ -f nightly=true | |
gh workflow run win32_25.lts.1+ --ref 25.lts.1+ -f nightly=true | |
gh workflow run xb1_25.lts.1+ --ref 25.lts.1+ -f nightly=true | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |