Skip to content

Commit

Permalink
Add 20.lts and 21.lts nightly triggers.
Browse files Browse the repository at this point in the history
  • Loading branch information
isarkis authored and andrewsavage1 committed Nov 2, 2022
1 parent 989fa67 commit aee9cc1
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/nightly_trigger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,36 @@ jobs:
gh workflow run raspi-2_22.lts.1+ --ref 22.lts.1+ -f nightly=true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
trigger_21:
permissions: write-all
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
ref: 21.lts.1+
- name: Trigger Nightly
run: |
set -x
gh workflow run evergreen_21.lts.1+ --ref 21.lts.1+ -f nightly=true
gh workflow run linux_21.lts.1+ --ref 21.lts.1+ -f nightly=true
gh workflow run raspi-2_21.lts.1+ --ref 21.lts.1+ -f nightly=true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
trigger_20:
permissions: write-all
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
ref: 20.lts.1+
- name: Trigger Nightly
run: |
set -x
gh workflow run linux_20.lts.1+ --ref 20.lts.1+ -f nightly=true
gh workflow run raspi-2_20.lts.1+ --ref 20.lts.1+ -f nightly=true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit aee9cc1

Please sign in to comment.