Skip to content

Commit eb529de

Browse files
authored
Merge pull request #909 from nf-core/nf-core-template-merge-2.7.2
Important! Template update for nf-core/tools v2.7.2
2 parents 59a9648 + fd428c3 commit eb529de

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/fix-linting.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ jobs:
3434
id: prettier_status
3535
run: |
3636
if prettier --check ${GITHUB_WORKSPACE}; then
37-
echo "name=result::pass" >> $GITHUB_OUTPUT
37+
echo "result=pass" >> $GITHUB_OUTPUT
3838
else
39-
echo "name=result::fail" >> $GITHUB_OUTPUT
39+
echo "result=fail" >> $GITHUB_OUTPUT
4040
fi
4141
4242
- name: Run 'prettier --write'

.github/workflows/linting_comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- name: Get PR number
2020
id: pr_number
21-
run: echo "name=pr_number::$(cat linting-logs/PR_number.txt)" >> $GITHUB_OUTPUT
21+
run: echo "pr_number=$(cat linting-logs/PR_number.txt)" >> $GITHUB_OUTPUT
2222

2323
- name: Post PR comment
2424
uses: marocchino/sticky-pull-request-comment@v2

workflows/rnaseq.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@ workflow RNASEQ {
757757
// MODULE: Pipeline reporting
758758
//
759759
CUSTOM_DUMPSOFTWAREVERSIONS (
760-
ch_versions.unique{ it.text }.collectFile(name: 'collated_versions.yml')
760+
ch_versions.unique().collectFile(name: 'collated_versions.yml')
761761
)
762762

763763
//

0 commit comments

Comments
 (0)