Skip to content

Commit

Permalink
fix again
Browse files Browse the repository at this point in the history
  • Loading branch information
yihming committed Feb 11, 2025
1 parent 7530472 commit 8aaa4cd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/womtools-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.repository }}

- name: Set up Java
uses: actions/setup-java@v3
Expand All @@ -25,7 +28,7 @@ jobs:
- name: List modified files
id: diff
run: echo "name=files::$(git diff --name-only ${{ github.event.pull_request.base.sha }} ${{ github.event.workflow_run.head_sha }})" >> $GITHUB_OUTPUT
run: echo "name=files::$(git diff --name-only ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }})" >> $GITHUB_OUTPUT

- name: Validate WDL files using Womtool
run: |
Expand Down

0 comments on commit 8aaa4cd

Please sign in to comment.