Skip to content

Commit

Permalink
go back to original directory after configuring git defaultBranch
Browse files Browse the repository at this point in the history
  • Loading branch information
mirpedrol committed Dec 11, 2024
1 parent 06db03f commit 6148983
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,14 +94,15 @@ jobs:
- name: Set Git default branch from nextflow.config and set git default branch to that or "master"

run: |
cd nf-core/${{ matrix.pipeline }}
pushd nf-core/${{ matrix.pipeline }}
defaultBranch=$(grep -B5 -A5 "nextflowVersion" nextflow.config | grep "defaultBranch" | cut -d"=" -f2)
if [ -z "$defaultBranch" ]; then
defaultBranch="master"
fi
echo "Default branch: $defaultBranch"
echo "defaultBranch=$defaultBranch" >> GITHUB_OUTPUT
git config --global init.defaultBranch $defaultBranch
popd
- name: Run synchronisation
if: github.repository == 'nf-core/tools'
Expand Down

0 comments on commit 6148983

Please sign in to comment.