Skip to content

Commit

Permalink
🧹 add step names
Browse files Browse the repository at this point in the history
  • Loading branch information
dmiller15 committed Mar 1, 2024
1 parent 0d15f76 commit 72ba8b8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release_submodule_updater.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ jobs:
SVERSION=$(yq '."sbg:links" | .[] | select(.label == "github-release") | .id | split("/") | .[-1]' ./annotation/workflows/kfdrc-somatic-snv-annot-workflow.cwl)
echo "SOMATIC_VERSION=$SVERSION" >> "$GITHUB_ENV"
- id: update-germline-submodules
name: Update Germline Submodules
if: ${{ env.GERMLINE_VERSION == github.ref_name }}
run: |
cd germline
Expand All @@ -67,6 +68,7 @@ jobs:
cd kf-annotation-tools
git checkout $GITHUB_REF_NAME
- id: update-somatic-submodules
name: Update Somatic Submodules
if: ${{ env.SOMATIC_VERSION == github.ref_name }}
run: |
cd somatic
Expand All @@ -79,7 +81,7 @@ jobs:
git checkout $GITHUB_REF_NAME
- id: cpr-germline
if: ${{ env.GERMLINE_VERSION == github.ref_name }}
name: Create Pull Request
name: Germline PR
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.MIGBRO_GHA_PAT }}
Expand Down Expand Up @@ -111,7 +113,7 @@ jobs:
labels: bix-dev
- id: cpr-somatic
if: ${{ env.SOMATIC_VERSION == github.ref_name }}
name: Create Pull Request
name: Somatic PR
uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.MIGBRO_GHA_PAT }}
Expand Down

0 comments on commit 72ba8b8

Please sign in to comment.