Dispatch pixie nightly #26
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
| name: Dispatch pixie nightly | |
| # github runs `schedule` on the default branch only, so the nightly for the | |
| # pixie branch is started from here | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| # an hour behind this branch's own nightly | |
| - cron: '0 3 * * *' | |
| jobs: | |
| dispatch: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: write | |
| steps: | |
| - name: Run CI on pixie | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: gh workflow run ci.yml --repo "$GITHUB_REPOSITORY" --ref pixie |