Skip to content

Commit 03e7dec

Browse files
authored
Merge pull request #3583 from mirpedrol/awsfulltestaction
Template: Do not skip AWS fulltest action on release
2 parents b28be77 + 83d233b commit 03e7dec

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
- downgrade nf-schema to fix CI tests ([#3544](https://github.com/nf-core/tools/pull/3544))
1616
- Make jobs automatically resubmit for exit code 175 ([#3564](https://github.com/nf-core/tools/pull/3564))
1717
- bump nf-schema back to 2.3.0 ([#3577](https://github.com/nf-core/tools/pull/3577))
18+
- Do not skip AWS fulltest action on release ([#3583](https://github.com/nf-core/tools/pull/3583))
1819

1920
### Linting
2021

nf_core/pipeline-template/.github/workflows/awsfulltest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
run-platform:
1515
name: Run AWS full tests
1616
# run only if the PR is approved by at least 2 reviewers and against the master/main branch or manually triggered
17-
if: github.repository == '{{ name }}' && github.event.review.state == 'approved' && (github.event.pull_request.base.ref == 'master' || github.event.pull_request.base.ref == 'main') || github.event_name == 'workflow_dispatch'
17+
if: github.repository == '{{ name }}' && github.event.review.state == 'approved' && (github.event.pull_request.base.ref == 'master' || github.event.pull_request.base.ref == 'main') || github.event_name == 'workflow_dispatch' || github.event_name == 'release'
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Set revision variable

0 commit comments

Comments
 (0)