-
Notifications
You must be signed in to change notification settings - Fork 4
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
1 parent
f13c027
commit 6fc5695
Showing
2 changed files
with
49 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,38 @@ | ||
name: workflows-complex-canary-prod-test | ||
'on': | ||
schedule: | ||
- cron: "0 */4 * * *" # run every 4 hours | ||
workflow_dispatch: | ||
pull_request: # TODO: remove this before merging | ||
branches: [ develop ] | ||
|
||
jobs: | ||
run-complex-canary-prod-test: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: 'read' | ||
id-token: 'write' | ||
steps: | ||
- name: Dispatch to terra-github-workflows | ||
uses: broadinstitute/workflow-dispatch@v3 | ||
with: | ||
workflow: workflows-canary-prod-test | ||
repo: broadinstitute/terra-github-workflows | ||
ref: refs/heads/sps_complex_canary_test # TODO: change to 'main' before merging | ||
token: ${{ secrets.BROADBOT_TOKEN }} # GitHub token for access to kick off a job in the private repo | ||
inputs: '{ | ||
"workspace-namespace": "broad-firecloud-dsde", | ||
"workspace-name": "complex-featured-workflow", | ||
"method-namespace": "gatk", | ||
"method-name": "five-dollar-genome-analysis-pipeline", | ||
"entity-type": "sample", | ||
"entity-id": "na12878_real_small" | ||
}' | ||
|
||
report-workflow: | ||
uses: broadinstitute/sherlock/.github/workflows/client-report-workflow.yaml@main | ||
with: | ||
notify-slack-channels-upon-workflow-failure: "#batch-servers" | ||
notify-slack-custom-icon: ":sad-terra:" | ||
permissions: | ||
id-token: write |
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