-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Vizro qa notebooks tests trigger | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
env: | ||
PYTHONUNBUFFERED: 1 | ||
FORCE_COLOR: 1 | ||
|
||
jobs: | ||
vizro-qa-trigger-fork: | ||
if: ${{ github.event.pull_request.head.repo.fork }} | ||
name: Vizro qa notebooks tests trigger | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Passed fork step | ||
run: echo "Success!" | ||
|
||
vizro-qa-trigger: | ||
if: ${{ ! github.event.pull_request.head.repo.fork }} | ||
name: Vizro qa notebooks tests trigger | ||
environment: vizro_secrets | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Tests trigger | ||
run: | | ||
export INPUT_OWNER=${{ secrets.ORG }} | ||
export INPUT_REPO=${{ secrets.QA_REPO }} | ||
export INPUT_WORKFLOW_FILE_NAME=${{ secrets.NOTEBOOKS_TEST_FILE }} | ||
export INPUT_GITHUB_TOKEN=${{ secrets.VIZRO_SVC_PAT }} | ||
export INPUT_REF=${{ github.head_ref }} | ||
tools/trigger-workflow-and-wait.sh |
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