Skip to content

Commit

Permalink
Merge pull request nf-core#3342 from mirpedrol/sync-default-branch
Browse files Browse the repository at this point in the history
go back to original directory after configuring git defaultBranch [no changelog]
  • Loading branch information
mirpedrol authored Dec 11, 2024
2 parents 06db03f + 6148983 commit a4965f3
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 a4965f3

Please sign in to comment.