[CI] Canary #37
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: '[CI] Canary' | |
on: | |
schedule: | |
# twice daily at 8pm and 8am PST | |
- cron: "0 3,15 * * *" | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
outputs: | |
timestamp: ${{ steps.variables.outputs.timestamp }} | |
steps: | |
- id: variables | |
run: | | |
echo "timestamp=$(date +%s)" >> $GITHUB_OUTPUT | |
ci: | |
needs: | |
- setup | |
uses: ./.github/workflows/ci.yaml | |
secrets: inherit | |
with: | |
git_sha: "main" | |
run_name: "ci(canary): ${{ needs.setup.outputs.timestamp }}" | |
resource_id: "ci-canary-${{ needs.setup.outputs.timestamp }}" |