Notebook CI - Scheduled #15
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
| # Scheduled workflow for hellouniverse repository | |
| # Copy this file to your repository's .github/workflows/ directory | |
| name: Notebook CI - Scheduled | |
| on: | |
| # Run weekly on Sundays at 2 AM UTC | |
| schedule: | |
| - cron: '0 2 * * 0' | |
| jobs: | |
| execute-all: | |
| uses: spacetelescope/notebook-ci-actions/.github/workflows/notebook-ci-unified.yml@v1 | |
| with: | |
| execution-mode: 'on-demand' | |
| trigger-event: 'execute' | |
| python-version: '3.11' | |
| enable-validation: false | |
| enable-security: false | |
| enable-execution: true | |
| enable-storage: false | |
| enable-html-build: false | |
| secrets: inherit | |