Skip to content

main <- Dev #1025

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jan 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 19 additions & 2 deletions .github/workflows/prod-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,28 @@ jobs:
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo

- name: Update appVersion in seqr Chart file
- name: Get latest pipeline-runner version
uses: mikefarah/yq@v4.22.1
id: current
with:
cmd: >
yq -i '.appVersion = "${{ github.event.workflow_run.head_sha }}"' charts/pipeline-runner/Chart.yaml
yq -r '.version' charts/pipeline-runner/Chart.yaml

- name: Bump version
id: bump
uses: cbrgm/semver-bump-action@main
with:
current-version: ${{ steps.current.outputs.result }}
bump-level: minor

- name: Update appVersion and version in pipeline-runner Chart file
uses: mikefarah/yq@v4.22.1
with:
cmd: >
yq -i '
.appVersion = "${{ github.event.workflow_run.head_sha }}" |
.version = "${{ steps.bump.outputs.new_version }}"
' charts/pipeline-runner/Chart.yaml

- name: Commit and Push changes
uses: Andro999b/push@v1.3
Expand Down
1 change: 1 addition & 0 deletions v03_pipeline/api/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ class LoadingPipelineRequest(BaseModel):
dataset_type: DatasetType
ignore_missing_samples_when_remapping: bool = False
skip_validation: bool = False
skip_check_sex_and_relatedness: bool = False

@field_validator('callset_path')
@classmethod
Expand Down
Loading