Skip to content

Commit 1eab71d

Browse files
Merge pull request #19 from oss-slu/volunteer-sign-up
Volunteer sign up
2 parents 1a4144f + 7029202 commit 1eab71d

File tree

3 files changed

+55
-6
lines changed

3 files changed

+55
-6
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
name: New Contributor
3+
about: Template to add someone as a new contributor.
4+
title: "[DATE]: [FEATURE NAME]"
5+
labels: contributor, needs triage
6+
assignees: octocat
7+
---
8+
9+
We are excited you want to [become an Open Source with SLU contributor](#21). The success of our projects depends on active involvement. If you want to be recognized as a contributor:
10+
11+
- [ ] Add your name to the list in `docs/about/contributors.md`;
12+
- Each entry must include a name;
13+
- Each entry may optionally include a link to a GitHub user profile;
14+
- Add your entry to the end of the list.
15+
- [ ] Add a link to merged Pull Request or a closed Issue in an OSS [project](https://oss-slu.github.io/docs/portfolio) to this Pull Request. You can use the autolinked references formats for [issues and pull requests](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/autolinked-references-and-urls#issues-and-pull-requests).

docs/about/community.md

Lines changed: 30 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
id: community
3-
title: Community Engagement
43
custom_edit_url: null
54
---
65

@@ -10,19 +9,44 @@ custom_edit_url: null
109

1110
We welcome the participation of anyone interested in contributing to the projects in our portfolio. You can work on open issues on projects in our portfolio, create a new issue, or e-mail us if you want to be more involved.
1211

12+
Join the conversation in the Open Source with SLU [Slack workspace](https://join.slack.com/t/oswslu/shared_invite/zt-24f0qhjbo-NkSfQ4LOg5wXxBdxP4vzfA).
13+
14+
## Overview
15+
16+
* Join our Slack workspace.
17+
* Contribute changes to an Open Source with SLU project.
18+
* Add your name to the Contributors list.
19+
* After making five contributions, you can be added to the `oss-slu` team in GitHub by contacting one of the program staff.
20+
21+
## Getting Startted
22+
23+
The success of our projects depends on active involvement. Anyone interested in getting involved with Open Source with SLU projects can sign up by opening a [Pull Request (PR)](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork) on the [contributors](contributors.md) page in this website. The PR will be merged when the Pull Request includes a link to a merged ticket from a project in the [portfolio](../portfolio.md) that they made contribution to, and the PR has been approved by the current tech lead on that project.
24+
25+
If you want to be recognized as a contributor, your pull request should include your name and a link to the work you have completed on an Open Source with SLU project.
26+
27+
* [ ] Add your name to the list in `docs/about/contributors.md`;
28+
* Each entry must include a name;
29+
* Each entry may optionally include a link to a GitHub user profile;
30+
* Add your entry to the end of the list.
31+
* [ ] Add a link to an already merged Pull Request or a closed Issue in an OSS [project](https://oss-slu.github.io/docs/portfolio) to your Pull Request. You can use the autolinked references formats for [issues and pull requests](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/autolinked-references-and-urls#issues-and-pull-requests).
32+
33+
## Join the `oss-slu` Team
34+
35+
After making five contributions, you can be added to the `oss-slu` team in GitHub by contacting one of the program staff. Send an e-mail to <[email protected]> or a slack message to the current Tech Lead on the project(s) you made contributions to. Include a list of at least five closed Issues and/or merged Pull Requests that you worked on.
36+
1337
## Git
1438

15-
All of our projects are stored in public GitHub repositories. To make code contributions to our repositories, you will need to know the basics about Git and GitHub. We recommend this <a href="https://youtu.be/RGOj5yH7evk">video tutorial</a>, if you are not familiar with these tools.
39+
All our projects are stored in public GitHub repositories. To make code contributions to our repositories, you will need to know the basics about Git and GitHub. We recommend this [video tutorial](https://youtu.be/RGOj5yH7evk), if you are not familiar with these tools.
1640

1741
## Guidance
1842

1943
When you are ready to contribute code to one of our open-source project, here is the process you should follow:
2044

2145
1. Identify the issue you want to work on and post a comment in this issue, asking the repo maintainer to assign the issue to you.
22-
2. Create a fork of our repository. Here is GitHub documentation for how to <a href="https://docs.github.com/en/enterprise-cloud@latest/get-started/quickstart/fork-a-repo">create a fork</a>
23-
3. Clone your fork of the repository. Here is GitHub documentation for how to <a href="https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository">clone a repository</a>.
46+
2. Crate a fork of our repository. Here is GitHub documentation for how to [create a fork](https://docs.github.com/en/enterprise-cloud@latest/get-started/quickstart/fork-a-repo)
47+
3. Clone your fork of the repository. Here is GitHub documentation for how to clone [a repository](https://docs.github.com/en/repositories/creating-and-managing-repositories/cloning-a-repository).
2448
4. Follow the developer guide to install project dependencies and run the code.
2549
5. Make the necessary code changes to resolve the issue. Commit and push your changes frequently. Use meaningful commit messages when committing your code.
2650
6. Test your changes, verifying that the issue is resolved.
27-
7. Create a pull request - a request to merge changes from your fork of the repository to the original repository. Here is GitHub documentation for how to <a href="https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork">create a pull request</a>. Make sure to note the issue number that your pull request resolves, and include details of your solution.
28-
8. One of our repository maintainers will review your pull request and will either merge it with the original repo, or request some changes. If changes are requested, go back to step 5 and proceed from there.
51+
7. Create a pull request - a request to merge changes from your fork of the repository to the original repository. Here is GitHub documentation for how to [create a pull request](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/creating-a-pull-request-from-a-fork). Make sure to note the issue number that your pull request resolves, and include details of your solution.
52+
8. One of our repository maintaners will review your pull request and will either merge it with the original repo, or request some changes. If changes are requested, go back to step 5 and proceed from there.

docs/about/contributors.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
id: contributors
3+
custom_edit_url: null
4+
---
5+
# Contributors
6+
7+
These people have contributed to Open Source with SLU projects. They have been added in (approximately) the order in which they became contributors.
8+
9+
- [Kate Holdener, Ph.D](https://github.com/kate-holdener)
10+
- [Daniel Shown](https://github.com/kungfuchicken)

0 commit comments

Comments
 (0)