Skip to content

Commit 24e20a6

Browse files
committed
add probot apps and update docs
1 parent 5d88e42 commit 24e20a6

File tree

10 files changed

+71
-17
lines changed

10 files changed

+71
-17
lines changed

.github/config.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Configuration for new-pr-welcome - https://github.com/behaviorbot/new-pr-welcome
2+
3+
# Comment to be posted to on PRs from first time contributors in your repository
4+
newPRWelcomeComment: >
5+
Thanks for opening this pull request!
6+
We have detected this is the first time for you to contribute
7+
to *dMRIPrep*.
8+
Please check out our [contributing guidelines](https://github.com/nipy/dmriprep/blob/master/CONTRIBUTING.rst).
9+
10+
We invite you to list yourself as a *dMRIPrep* contributor, so if your name
11+
is not already mentioned, please modify the
12+
[``.zenodo.json``](https://github.com/nipy/dmriprep/blob/master/.zenodo.json)
13+
file with your data right above Anisha's entry. Example:
14+
```
15+
{
16+
"name": "Contributor, New dMRIPrep",
17+
"affiliation": "Department of dMRI prep'ing, Open Science Made-Up University",
18+
"orcid": "<your id>"
19+
},
20+
{
21+
"name": "Keshavan, Anisha",
22+
"affiliation": "Child Mind Institute",
23+
"orcid": "0000-0003-3554-043X"
24+
},
25+
```
26+
Of course, if you want to opt-out this time there is no
27+
problem at all with adding your name later.
28+
You will be always welcome to add it in the future whenever
29+
you feel it should be listed.

.github/release-drafter.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
template: |
2+
## Release Notes
3+
4+
## CHANGES
5+
$CHANGES

.github/stale.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Number of days of inactivity before an issue becomes stale
2+
daysUntilStale: 900
3+
# Number of days of inactivity before a stale issue is closed
4+
daysUntilClose: 200
5+
# Issues with these labels will never be considered stale
6+
exemptLabels:
7+
- pinned
8+
- security
9+
- feature
10+
- help wanted
11+
- low priority
12+
# Label to use when marking an issue as stale
13+
staleLabel: stale
14+
# Comment to post when marking an issue as stale. Set to `false` to disable
15+
markComment: >
16+
This issue has been automatically marked as stale because it has not had
17+
recent activity. It will be closed if no further activity occurs. Thank you
18+
for your contributions.
19+
# Comment to post when closing a stale issue. Set to `false` to disable
20+
closeComment: false

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ script: tox
2626
deploy:
2727
provider: pypi
2828
distributions: sdist bdist_wheel
29-
user: josephmje
29+
user: nipy
3030
password:
3131
secure: PLEASE_REPLACE_ME
3232
on:

CONTRIBUTING.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ You can contribute in many ways:
123123
Report Bugs
124124
~~~~~~~~~~~
125125

126-
Report bugs at https://github.com/josephmje/dmriprep/issues.
126+
Report bugs at https://github.com/nipy/dmriprep/issues.
127127

128128
If you are reporting a bug, please include:
129129

@@ -153,7 +153,7 @@ articles, and such.
153153
Submit Feedback
154154
~~~~~~~~~~~~~~~
155155

156-
The best way to send feedback is to file an issue at https://github.com/josephmje/dmriprep/issues.
156+
The best way to send feedback is to file an issue at https://github.com/nipy/dmriprep/issues.
157157

158158
If you are proposing a feature:
159159

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dmriprep
1010
:target: https://travis-ci.org/akeshavan/dmriprep
1111

1212
.. image:: https://api.codacy.com/project/badge/Grade/01a2d18ee62846e3817c6dccd7f8f5f1
13-
:target: https://www.codacy.com/app/josephmje/dmriprep?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=josephmje/dmriprep&amp;utm_campaign=Badge_Grade
13+
:target: https://www.codacy.com/app/nipy/dmriprep?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=nipy/dmriprep&amp;utm_campaign=Badge_Grade
1414
:alt: Codacy Badge
1515

1616
.. image:: https://readthedocs.org/projects/dmriprep/badge/?version=latest

dmriprep/__about__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
__packagename__ = 'dmriprep'
99
__credits__ = ('Contributors: please check the ``.zenodo.json`` file at the'
1010
'top-level folder of the repository')
11-
__url__ = 'https://github.com/josephmje/dmriprep'
11+
__url__ = 'https://github.com/nipy/dmriprep'
1212

1313
DOWNLOAD_URL = (
14-
'https://github.com/josephmje/dmriprep/{name}/archive/{ver}.tar.gz'.format(
14+
'https://github.com/nipy/dmriprep/{name}/archive/{ver}.tar.gz'.format(
1515
name=__packagename__, ver=__version__
1616
)
1717
)

docs/installation.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Docker Container
99

1010
.. code-block:: console
1111
12-
$ git clone https://github.com/josephmje/dmriprep
12+
$ git clone https://github.com/nipy/dmriprep
1313
$ cd dmriprep
1414
$ make docker
1515
@@ -67,13 +67,13 @@ You can either clone the public repository:
6767

6868
.. code-block:: console
6969
70-
$ git clone git://github.com/josephmje/dmriprep
70+
$ git clone git://github.com/nipy/dmriprep
7171
7272
Or download the `tarball`_:
7373

7474
.. code-block:: console
7575
76-
$ curl -OL https://github.com/josephmje/dmriprep/tarball/master
76+
$ curl -OL https://github.com/nipy/dmriprep/tarball/master
7777
7878
Once you have a copy of the source, you can install it with:
7979

@@ -82,8 +82,8 @@ Once you have a copy of the source, you can install it with:
8282
$ python setup.py install
8383
8484
85-
.. _Github repo: https://github.com/josephmje/dmriprep
86-
.. _tarball: https://github.com/josephmje/dmriprep/tarball/master
85+
.. _Github repo: https://github.com/nipy/dmriprep
86+
.. _tarball: https://github.com/nipy/dmriprep/tarball/master
8787

8888
External Dependencies
8989
---------------------

docs/license.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ License information
22
-------------------
33

44
We use the 3-clause BSD license; the full license may be found in the
5-
`LICENSE <https://github.com/josephmje/dmriprep/blob/master/LICENSE>`_ file
5+
`LICENSE <https://github.com/nipy/dmriprep/blob/master/LICENSE>`_ file
66
in the ``dmriprep`` distribution.
77

88
All trademarks referenced herein are property of their respective holders.

setup.cfg

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[metadata]
2-
url = https://github.com/josephmje/dmriprep
3-
author = TIGR Lab
4-
author_email = [email protected]
5-
maintainer = Michael Joseph
6-
maintainer_email = [email protected]
2+
url = https://github.com/nipy/dmriprep
3+
author = The Nipy developers
4+
author_email = [email protected]
5+
maintainer = Oscar Esteban
6+
maintainer_email = [email protected]
77
description = dMRIPrep is a robust and easy-to-use pipeline for preprocessing of diverse dMRI data.
88
long_description = file:long_description.rst
99
long_description_content_type = text/x-rst; charset=UTF-8

0 commit comments

Comments
 (0)