Trigger Notebook Execution #11
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: Trigger Notebook Execution | |
| on: | |
| push: | |
| branches: [ main ] | |
| workflow_dispatch: # Allows manual triggering | |
| jobs: | |
| call-reusable-logic: | |
| # Path to the reusable workflow file | |
| uses: groda/gha-workflows/.github/workflows/run-jupyter-notebooks.yml@main | |
| with: | |
| ubuntu_image: 'ubuntu-22.04' | |
| # target_repo is the current "owner/repo" | |
| target_repo: ${{ github.repository }} | |
| # timeout for notebook execution | |
| timeout: 900 | |
| # secrets: inherit # Uncomment this if you need to pass secrets like PATs |