Skip to content

Commit a4d41e7

Browse files
committed
Merge branch 'dev' of https://github.com/nf-core/rnaseq into strand
2 parents 39b53c1 + eb529de commit a4d41e7

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
@@ -786,7 +786,7 @@ workflow RNASEQ {
786786
// MODULE: Pipeline reporting
787787
//
788788
CUSTOM_DUMPSOFTWAREVERSIONS (
789-
ch_versions.unique{ it.text }.collectFile(name: 'collated_versions.yml')
789+
ch_versions.unique().collectFile(name: 'collated_versions.yml')
790790
)
791791

792792
//

0 commit comments

Comments
 (0)