Np refactor gha #115
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
name: Test ReblockGVCF | |
# Controls when the workflow will run | |
on: | |
pull_request: | |
branches: [ "develop", "staging", "master" ] | |
# Only run if files in these paths changed: | |
#################################### | |
# SET PIPELINE SPECIFIC PATHS HERE # | |
#################################### | |
paths: | |
- 'pipelines/broad/dna_seq/germline/joint_genotyping/reblocking/**' | |
- 'tasks/broad/GermlineVariantDiscovery.wdl' | |
- 'tasks/broad/Qc.wdl' | |
- 'tasks/broad/Utilities.wdl' | |
- 'verification/VerifyGvcf.wdl' | |
- 'verification/VerifyTasks.wdl' | |
- 'verification/test-wdls/TestReblockGVCF.wdl' | |
- 'tasks/broad/TerraCopyFilesFromCloudToCloud.wdl' | |
- '.github/workflows/test_reblockGVCF.yml' | |
- '.github/workflows/warp_test_workflow.yml' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
inputs: | |
useCallCache: | |
description: 'Use call cache (default: true)' | |
required: false | |
default: "true" | |
updateTruth: | |
description: 'Update truth files (default: false)' | |
required: false | |
default: "false" | |
testType: | |
description: 'Specify the type of test (Plumbing or Scientific)' | |
required: false | |
type: choice | |
options: | |
- Plumbing | |
- Scientific | |
truthBranch: | |
description: 'Specify the branch for truth files (default: master)' | |
required: false | |
default: "master" | |
jobs: | |
TestReblockGVCF: | |
uses: ./.github/workflows/warp_test_workflow.yml | |
with: | |
pipeline_name: TestReblockGVCF | |
dockstore_pipeline_name: ReblockGVCF | |
pipeline_dir: pipelines/broad/dna_seq/germline/joint_genotyping/reblocking | |
use_call_cache: ${{ github.event.inputs.useCallCache || 'true' }} | |
update_truth: ${{ github.event.inputs.updateTruth || 'false' }} | |
test_type: ${{ github.event.inputs.testType }} | |
truth_branch: ${{ github.event.inputs.truthBranch || 'master' }} | |
secrets: | |
PDT_TESTER_SA_B64: ${{ secrets.PDT_TESTER_SA_B64 }} | |
DOCKSTORE_TOKEN: ${{ secrets.DOCKSTORE_TOKEN }} |