Skip to content

Commit 98a4250

Browse files
committed
Updated links and assignees
1 parent 6360e15 commit 98a4250

11 files changed

+27
-27
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Bug report
33
about: Create a report to help us improve
44
title: ‘’
55
labels: bug
6-
assignees: callahantiff
6+
assignees: {$USER_NAME}
77

88
---
99

.github/ISSUE_TEMPLATE/coding-tasks.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Coding Tasks
33
about: Make requests to edit existing code or create new code
44
title: 'Coding: short description of needed code'
55
labels: coding
6-
assignees: callahantiff
6+
assignees: {$USER_NAME}
77

88
---
99

.github/ISSUE_TEMPLATE/feature-request.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Feature request
33
about: Suggest an idea for this project
44
title: ''
55
labels: enhancement
6-
assignees: callahantiff
6+
assignees: {$USER_NAME}
77

88
---
99

.github/ISSUE_TEMPLATE/help.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Help
33
about: When you have a question about how to contribute to this repository
44
title: 'HELP: briefly describe what you need help with'
55
labels: help
6-
assignees: callahantiff
6+
assignees: {$USER_NAME}
77

88
---
99

.github/ISSUE_TEMPLATE/meetings.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ about: Set a meeting agenda, request a meeting or a topic be discussed at an upc
44
meeting
55
title: Project Meeting -- MM/DD/YYYY @ HH:MM
66
labels: meetings
7-
assignees: callahantiff
7+
assignees: {$USER_NAME}
88

99
---
1010

.github/ISSUE_TEMPLATE/other.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Other
33
about: All other issues
44
title: Other
55
labels: other
6-
assignees: callahantiff
6+
assignees: {$USER_NAME}
77

88
---
99

.github/ISSUE_TEMPLATE/project-organization-tasks.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Project Organization Tasks
33
about: Add a task related to the organization of the project
44
title: 'TODO - Project Organization: short description of needed task'
55
labels: project organization
6-
assignees: callahantiff
6+
assignees: {$USER_NAME}
77

88
---
99

.github/ISSUE_TEMPLATE/pubs-and-presentations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Pubs and Presentations
33
about: Add a publication or presentation-related task
44
title: 'TODO - Pubs+Presentation Task: Short description of task'
55
labels: pubs+presentations
6-
assignees: callahantiff
6+
assignees: {$USER_NAME}
77

88
---
99

.github/ISSUE_TEMPLATE/wiki.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Wiki
33
about: Suggest edits for project Wiki page
44
title: 'Wiki: Briefly describe task'
55
labels: wiki
6-
assignees: callahantiff
6+
assignees: {$USER_NAME}
77

88
---
99

create_new_project.sh

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

33
echo "Before running this script you must:"
4-
echo " 1) Create a new repository to serve as your Abra-Collaboratory framework based repository"
4+
echo " 1) Create a new repository to serve as your {$PROJECT_NAME} framework based repository"
55
echo " 2) Create the first wiki page in your repository manually."
66

77
if [ $# != 2 ]
@@ -20,30 +20,30 @@ fi
2020
USER_NAME=$1
2121
PROJECT_NAME=$2
2222

23-
git clone https://github.com/callahantiff/Abra-Collaboratory.git
23+
git clone https://github.com/{$USER_NAME}/{$PROJECT_NAME}.git
2424
mkdir resources
2525
mkdir .github
26-
mv Abra-Collaboratory/.github/ISSUE_TEMPLATE .github/
27-
mv Abra-Collaboratory/resources/documentation resources/
28-
mv Abra-Collaboratory/resources/New_Collaborators_Invitation_Email.md resources/
26+
mv {$PROJECT_NAME}/.github/ISSUE_TEMPLATE .github/
27+
mv {$PROJECT_NAME}/resources/documentation resources/
28+
mv {$PROJECT_NAME}/resources/New_Collaborators_Invitation_Email.md resources/
2929

30-
rm -rf Abra-Collaboratory/
30+
rm -rf {$PROJECT_NAME}/
3131

3232
git add .
3333
git commit -m "Added Abra-C framework files"
3434

35-
find . -type f ! -path '*/\.git/*' -exec sed -i 's/callahantiff/{$USER_NAME}/g' {} \;
36-
find . -type f ! -path '*/\.git/*' -exec sed -i 's/Abra-Collaboratory/{$PROJECT_NAME}/g' {} \;
35+
find . -type f ! -path '*/\.git/*' -exec sed -i 's/{$USER_NAME}/{$USER_NAME}/g' {} \;
36+
find . -type f ! -path '*/\.git/*' -exec sed -i 's/{$PROJECT_NAME}/{$PROJECT_NAME}/g' {} \;
3737

3838
git add .
3939
git commit -m "Updated links and assignees"
4040
git push
4141

42-
git clone https://github.com/callahantiff/Abra-Collaboratory.wiki.git
42+
git clone https://github.com/{$USER_NAME}/{$PROJECT_NAME}.wiki.git
4343

4444
git clone https://github.com/${USER_NAME}/${PROJECT_NAME}.wiki.git
45-
mv Abra-Collaboratory.wiki/Our-Reproducible-Repository-Guidelines-😃.md ${USER_NAME}/${PROJECT_NAME}.wiki
46-
mv Abra-Collaboratory.wiki/Using-GitHub-as-a-Reproducible-Research-Platform.md ${USER_NAME}/${PROJECT_NAME}.wiki
45+
mv {$PROJECT_NAME}.wiki/Our-Reproducible-Repository-Guidelines-😃.md ${USER_NAME}/${PROJECT_NAME}.wiki
46+
mv {$PROJECT_NAME}.wiki/Using-GitHub-as-a-Reproducible-Research-Platform.md ${USER_NAME}/${PROJECT_NAME}.wiki
4747
cd ${USER_NAME}/${PROJECT_NAME}.wiki
4848
git add .
4949
git commit -m "Added Abra-C guidelines"
@@ -52,8 +52,8 @@ git commit -m "Added Abra-C guidelines"
5252
git push wiki-fork -f
5353

5454
cd ..
55-
rm -rf Abra-Collaboratory.wiki
55+
rm -rf {$PROJECT_NAME}.wiki
5656
rm -rf ${USER_NAME}/${PROJECT_NAME}.wiki
5757

5858
echo "The next step is to copy the project board templates."
59-
echo "See here for instructions: https://github.com/callahantiff/Abra-Collaboratory#add-projects-boards"
59+
echo "See here for instructions: https://github.com/{$USER_NAME}/{$PROJECT_NAME}#add-projects-boards"

resources/New_Collaborators_Invitation_Email.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Dear {_name of collaborator_}-
22

33

4-
I'd like to invite you to participate in the {_project name_} via the [abra-collaboratory reproducible research framework](https://github.com/callahantiff/Abra-Collaboratory) hosted on GitHub.
4+
I'd like to invite you to participate in the {_project name_} via the [abra-collaboratory reproducible research framework](https://github.com/{$USER_NAME}/{$PROJECT_NAME}) hosted on GitHub.
55

6-
The [abra-collaboratory reproducible research framework](https://github.com/callahantiff/Abra-Collaboratory) will allow me to use GitHub as a one-stop-shop for all aspects of my project. It is my hope that we can use this repository to collaborate and interact on my project in the following ways:
6+
The [abra-collaboratory reproducible research framework](https://github.com/{$USER_NAME}/{$PROJECT_NAME}) will allow me to use GitHub as a one-stop-shop for all aspects of my project. It is my hope that we can use this repository to collaborate and interact on my project in the following ways:
77
- [x] Detailed project documentation and decision tracking
88
- [x] Documenting and archiving project meeting minutes
99
- [x] Organizing to-do lists, issues, and keeping track of completed work
@@ -15,11 +15,11 @@ If you are not yet on GitHub, please sign-up for an account [here](https://githu
1515

1616
**Once you are Added as a Collaborator**
1717
In order to help manage project notifications, I’d like to ask you to make an update to your settings. This change will make it so that you only get sent emails when you are specifically `@mentioned` or assigned to an issue or when big changes to the code base are made. This will prevent you from becoming annoyed with me by ensuring that you are only notified when something _ACTUALLY_ needs your attention.
18-
To make this change, go to the “UnWatch” drop-down in the GitHub repository and change the default setting from “Watching” to “Releases only”. See screenshots [here](https://github.com/callahantiff/Abra-Collaboratory/wiki/Using-GitHub-as-a-Reproducible-Research-Platform#notifications).
18+
To make this change, go to the “UnWatch” drop-down in the GitHub repository and change the default setting from “Watching” to “Releases only”. See screenshots [here](https://github.com/{$USER_NAME}/{$PROJECT_NAME}/wiki/Using-GitHub-as-a-Reproducible-Research-Platform#notifications).
1919

2020
**Getting Comfortable with the Repository**
21-
I strongly recommend you start by reading the [Abra-Collaboratory tutorial](https://github.com/callahantiff/Abra-Collaboratory/wiki/Using-GitHub-as-a-Reproducible-Research-Platform) on the project Wiki.
22-
Then, review the [Abra-Collaboratory guidelines](https://github.com/callahantiff/Abra-Collaboratory/wiki/Our-Reproducible-Repository-Guidelines-%F0%9F%98%83) (err, suggestions :smiley:) for collaboration.
21+
I strongly recommend you start by reading the [{$PROJECT_NAME} tutorial](https://github.com/{$USER_NAME}/{$PROJECT_NAME}/wiki/Using-GitHub-as-a-Reproducible-Research-Platform) on the project Wiki.
22+
Then, review the [{$PROJECT_NAME} guidelines](https://github.com/{$USER_NAME}/{$PROJECT_NAME}/wiki/Our-Reproducible-Repository-Guidelines-%F0%9F%98%83) (err, suggestions :smiley:) for collaboration.
2323

2424
<br>
2525

0 commit comments

Comments
 (0)