-
Notifications
You must be signed in to change notification settings - Fork 196
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' into release-checklist
- Loading branch information
Showing
331 changed files
with
15,855 additions
and
13,532 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,10 @@ on: | |
description: "Force a PR to be created" | ||
type: boolean | ||
default: false | ||
pipeline: | ||
description: "Pipeline to sync" | ||
type: string | ||
default: "all" | ||
|
||
# Cancel if a newer run is started | ||
concurrency: | ||
|
@@ -35,6 +39,14 @@ jobs: | |
run: | | ||
if [ "${{ github.event.inputs.testpipeline }}" == "true" ]; then | ||
echo '{"pipeline":["testpipeline"]}' > pipeline_names.json | ||
elif [ "${{ github.event.inputs.pipeline }}" != "all" ]; then | ||
curl -O https://nf-co.re/pipeline_names.json | ||
# check if the pipeline exists | ||
if ! grep -q "\"${{ github.event.inputs.pipeline }}\"" pipeline_names.json; then | ||
echo "Pipeline ${{ github.event.inputs.pipeline }} does not exist" | ||
exit 1 | ||
fi | ||
echo '{"pipeline":["${{ github.event.inputs.pipeline }}"]}' > pipeline_names.json | ||
else | ||
curl -O https://nf-co.re/pipeline_names.json | ||
fi | ||
|
@@ -82,7 +94,7 @@ jobs: | |
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "nf-core-bot" | ||
nf-core --log-file sync_log_${{ matrix.pipeline }}.txt sync -d nf-core/${{ matrix.pipeline }} \ | ||
nf-core --log-file sync_log_${{ matrix.pipeline }}.txt pipelines sync -d nf-core/${{ matrix.pipeline }} \ | ||
--from-branch dev \ | ||
--pull-request \ | ||
--username nf-core-bot \ | ||
|
Oops, something went wrong.