File tree Expand file tree Collapse file tree 2 files changed +20
-2
lines changed Expand file tree Collapse file tree 2 files changed +20
-2
lines changed Original file line number Diff line number Diff line change @@ -86,11 +86,28 @@ jobs:
86
86
persist-credentials : false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
87
87
fetch-depth : 0 # otherwise, you will failed to push refs to dest repo
88
88
89
- - name : Update appVersion in seqr Chart file
89
+ - name : Get latest pipeline-runner version
90
90
uses : mikefarah/yq@v4.22.1
91
+ id : current
91
92
with :
92
93
cmd : >
93
- yq -i '.appVersion = "${{ github.event.workflow_run.head_sha }}"' charts/pipeline-runner/Chart.yaml
94
+ yq -r '.version' charts/pipeline-runner/Chart.yaml
95
+
96
+ - name : Bump version
97
+ id : bump
98
+ uses : cbrgm/semver-bump-action@main
99
+ with :
100
+ current-version : ${{ steps.current.outputs.result }}
101
+ bump-level : minor
102
+
103
+ - name : Update appVersion and version in pipeline-runner Chart file
104
+ uses : mikefarah/yq@v4.22.1
105
+ with :
106
+ cmd : >
107
+ yq -i '
108
+ .appVersion = "${{ github.event.workflow_run.head_sha }}" |
109
+ .version = "${{ steps.bump.outputs.new_version }}"
110
+ ' charts/pipeline-runner/Chart.yaml
94
111
95
112
- name : Commit and Push changes
96
113
uses : Andro999b/push@v1.3
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ class LoadingPipelineRequest(BaseModel):
14
14
dataset_type : DatasetType
15
15
ignore_missing_samples_when_remapping : bool = False
16
16
skip_validation : bool = False
17
+ skip_check_sex_and_relatedness : bool = False
17
18
18
19
@field_validator ('callset_path' )
19
20
@classmethod
You can’t perform that action at this time.
0 commit comments