Skip to content

Commit

Permalink
cicd: Fix calculating opencga branch in pull request approve workflow…
Browse files Browse the repository at this point in the history
… #TASK-6981
  • Loading branch information
juanfeSanahuja committed Oct 2, 2024
1 parent 337f805 commit 8375d99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test-xetabase-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
run: |
# If the task exists in the opencga repository, this is the branch to be tested
if [[ "${{ inputs.task }}" == TASK* ]]; then
if [ "$(git ls-remote "https://github.com/opencb/opencga.git" "${{ inputs.task }}" ] ; then
if [ "$(git ls-remote "https://github.com/opencb/opencga.git" "${{ inputs.task }}") ] ; then
opencga_branch="${{ inputs.task }}";
return 0;
fi
Expand Down

0 comments on commit 8375d99

Please sign in to comment.