Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
- nf-core bot: collect all snapshots before commiting ([#4082](https://github.com/nf-core/tools/pull/4082))
- Update GitHub Actions to v4 (major) ([#4081](https://github.com/nf-core/tools/pull/4081))
- fix nf-core bot snapshot action ([#4083](https://github.com/nf-core/tools/pull/4083))
- Fix GHA notification for AWS full tests job ([#4092](https://github.com/nf-core/tools/pull/4092))
- sync: don't overwrite the defaultBranch if already set in nextflow.config ([#3939](https://github.com/nf-core/tools/pull/3939))

### Linting
Expand Down
4 changes: 2 additions & 2 deletions nf_core/pipeline-template/.github/workflows/awsfulltest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ jobs:
enabled = false
}
onComplete {
message = ':white_check_mark: *{{ short_name }}/{% raw %}${{ matrix.profile }}{% endraw %}* completed successfully! :tada:'
message = ':white_check_mark: *{{ short_name }}/test_full* completed successfully! :tada:'
}
onError {
message = ':x: *{{ short_name }}/{% raw %}${{ matrix.profile }}{% endraw %}* failed :crying_cat_face:'
message = ':x: *{{ short_name }}/test_full* failed :crying_cat_face:'
}
}
parameters: |
Expand Down
Loading