You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/CONTRIBUTING.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -69,7 +69,7 @@ If you wish to contribute a new step, please use the following coding standards:
69
69
2. Write the process block (see below).
70
70
3. Define the output channel if needed (see below).
71
71
4. Add any new flags/options to `nextflow.config` with a default (see below).
72
-
5. Add any new flags/options to `nextflow_schema.json`**with help text** (with `nf-core schema build .`)
72
+
5. Add any new flags/options to `nextflow_schema.json` with help text (with `nf-core schema build .`).
73
73
6. Add any new flags/options to the help message (for integer/text parameters, print to help the corresponding `nextflow.config` parameter).
74
74
7. Add sanity checks for all relevant parameters.
75
75
8. Add any new software to the `scrape_software_versions.py` script in `bin/` and the version command to the `scrape_software_versions` process in `main.nf`.
@@ -87,7 +87,7 @@ Once there, use `nf-core schema build .` to add to `nextflow_schema.json`.
87
87
88
88
### Default processes resource requirements
89
89
90
-
Sensible defaults for process resource requirements (CPUs / memory / time) for a process should be defined in `conf/base.config`. These should generally be specified generic with `withLabel:` selectors so they can be shared across multiple processes/steps of the pipeline. A nf-core standard set of labels that should be followed where possible can be seen in the [nf-core pipeline template](https://github.com/nf-core/tools/blob/master/nf_core/pipeline-template/%7B%7Bcookiecutter.name_noslash%7D%7D/conf/base.config), which has the default process as a single core-process, and then different levels of multi-core configurations for increasingly large memory requirements defined with standardised labels.
90
+
Sensible defaults for process resource requirements (CPUs / memory / time) for a process should be defined in `conf/base.config`. These should generally be specified generic with `withLabel:` selectors so they can be shared across multiple processes/steps of the pipeline. A nf-core standard set of labels that should be followed where possible can be seen in the [nf-core pipeline template](https://github.com/nf-core/tools/blob/master/nf_core/pipeline-template/conf/base.config), which has the default process as a single core-process, and then different levels of multi-core configurations for increasingly large memory requirements defined with standardised labels.
91
91
92
92
:warning: Note that in nf-core/eager we currently have our own custom process labels, so please check `base.config`!
Copy file name to clipboardExpand all lines: .github/PULL_REQUEST_TEMPLATE.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,9 +15,9 @@ Learn more about contributing: [CONTRIBUTING.md](https://github.com/nf-core/eage
15
15
16
16
-[ ] This comment contains a description of changes (with reason).
17
17
-[ ] If you've fixed a bug or added code that should be tested, add tests!
18
-
-[ ] If you've added a new tool - add to the software_versions process and a regex to `scrape_software_versions.py`
19
-
-[ ] If you've added a new tool - have you followed the pipeline conventions in the [contribution docs](https://github.com/nf-core/eager/tree/master/.github/CONTRIBUTING.md)
20
-
-[ ] If necessary, also make a PR on the nf-core/eager _branch_ on the [nf-core/test-datasets](https://github.com/nf-core/test-datasets) repository.
18
+
-[ ] If you've added a new tool - add to the software_versions process and a regex to `scrape_software_versions.py`
19
+
-[ ] If you've added a new tool - have you followed the pipeline conventions in the [contribution docs](https://github.com/nf-core/eager/tree/master/.github/CONTRIBUTING.md)
20
+
-[ ] If necessary, also make a PR on the nf-core/eager _branch_ on the [nf-core/test-datasets](https://github.com/nf-core/test-datasets) repository.
21
21
-[ ] Make sure your code lints (`nf-core lint .`).
22
22
-[ ] Ensure the test suite passes (`nextflow run . -profile test,docker`).
23
23
-[ ] Usage Documentation in `docs/usage.md` is updated.
# If the above check failed, post a comment on the PR explaining the failure
@@ -23,13 +23,22 @@ jobs:
23
23
uses: mshick/add-pr-comment@v1
24
24
with:
25
25
message: |
26
+
## This PR is against the `master` branch :x:
27
+
28
+
* Do not close this PR
29
+
* Click _Edit_ and change the `base` to `dev`
30
+
* This CI test will remain failed until you push a new commit
31
+
32
+
---
33
+
26
34
Hi @${{ github.event.pull_request.user.login }},
27
35
28
-
It looks like this pull-request is has been made against the ${{github.event.pull_request.head.repo.full_name}} `master` branch.
36
+
It looks like this pull-request is has been made against the [${{github.event.pull_request.head.repo.full_name }}](https://github.com/${{github.event.pull_request.head.repo.full_name }}) `master` branch.
29
37
The `master` branch on nf-core repositories should always contain code from the latest release.
30
-
Because of this, PRs to `master` are only allowed if they come from the ${{github.event.pull_request.head.repo.full_name}} `dev` branch.
38
+
Because of this, PRs to `master` are only allowed if they come from the [${{github.event.pull_request.head.repo.full_name }}](https://github.com/${{github.event.pull_request.head.repo.full_name }}) `dev` branch.
31
39
32
40
You do not need to close this PR, you can change the target branch to `dev` by clicking the _"Edit"_ button at the top of this page.
41
+
Note that even after this, the test will continue to show as failing until you push a new commit.
0 commit comments