Skip to content

Commit e1366d0

Browse files
authored
main <- Dev (#1025)
* add skip_check_sex_and_relatedness to pipeline-worker (#1023) * update pipeline-runner helm release action to bump version too
1 parent 39f6098 commit e1366d0

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

.github/workflows/prod-release.yml

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,28 @@ jobs:
8686
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
8787
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
8888

89-
- name: Update appVersion in seqr Chart file
89+
- name: Get latest pipeline-runner version
9090
uses: mikefarah/yq@v4.22.1
91+
id: current
9192
with:
9293
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
94111
95112
- name: Commit and Push changes
96113
uses: Andro999b/push@v1.3

v03_pipeline/api/model.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ class LoadingPipelineRequest(BaseModel):
1414
dataset_type: DatasetType
1515
ignore_missing_samples_when_remapping: bool = False
1616
skip_validation: bool = False
17+
skip_check_sex_and_relatedness: bool = False
1718

1819
@field_validator('callset_path')
1920
@classmethod

0 commit comments

Comments
 (0)