🌃 Nightly run of Commit d2d6eaa2c6822a37a3df6bb6ce3e6a41930a8b33 triggered by: schedule of refs/heads/master branch (workflow run ID: 20188299024; number: 320; attempt: 1) #320
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: ⏳ | |
| on: | |
| pull_request: | |
| paths: # only changes to this workflow itself trigger PR testing | |
| - .github/workflows/scheduled-runs.yml | |
| schedule: | |
| - cron: 7 6 * * * # run daily at 6:07 UTC | |
| workflow_dispatch: # manual trigger | |
| run-name: >- | |
| 🌃 | |
| Nightly run of | |
| ${{ | |
| github.event.pull_request.number && 'PR' || '' | |
| }}${{ | |
| !github.event.pull_request.number && 'Commit' || '' | |
| }} | |
| ${{ github.event.pull_request.number || github.sha }} | |
| triggered by: ${{ github.event_name }} of ${{ | |
| github.ref | |
| }} ${{ | |
| github.ref_type | |
| }} | |
| (workflow run ID: ${{ | |
| github.run_id | |
| }}; number: ${{ | |
| github.run_number | |
| }}; attempt: ${{ | |
| github.run_attempt | |
| }}) | |
| jobs: | |
| main-ci-cd-pipeline: | |
| name: 🧪 Main CI/CD pipeline | |
| uses: ./.github/workflows/ci-cd.yml | |
| secrets: inherit | |
| ... |