Skip to content
This repository has been archived by the owner on Apr 11, 2024. It is now read-only.

Latest commit

 

History

History
100 lines (61 loc) · 3.5 KB

README.md

File metadata and controls

100 lines (61 loc) · 3.5 KB

Heroes

This README showcases all the people who have made it as Heroes into the Heroes program!

All of our program members start out as Rookies and can become Heroes in one of two ways:

  1. By being nominated by a member of the Polkadot Developer Heroes team
  2. By self-nominating and going through the review process

If you are already a Rookie and feel ready to apply to become a Hero, go ahead and nominate yourself today!

You can read the Heroes Review Criteria and Scoring Matrix Guidelines to learn more about the review process.

Heroes List Alice (Template)

Contributing

To add your profile to our list of Rookies or Heroes, please follow the steps below, please only do so once you receive an invitation after acceptance into the program:

Fork the Repository

Start by clicking on the "Fork" button at the top right corner of this repository. This will create a copy of this repository in your account.

Clone the Repository

Now, clone this repository to your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the 'copy to clipboard' icon.

Open a terminal and run the following git command:

git clone "url you just copied"

Change to the repository directory on your computer:

cd [repository name]

Now create a branch using the git checkout command:

git checkout -b your-new-branch-name

Add your Profile Card

Create your profile card in the appropriate README.md file (either Rookies/README.md or Heroes/README.md), following the provided template or copy and paste an earlier profile card of another member to use for reference. Make sure your profile is in alphabetical order in the list.

Add your profile image to the ./images folder, and fill out the information fields in your card.

Don't forget to preview your additions in the README.md file to confirm it looks as expected.

Commit your Changes

If you go to the project directory and execute the command git status, you'll see the changes.

Add those changes to the branch you just created using the git add command:

git add -p

Now commit those changes using the git commit command:

git commit -m "Add [Your Name] to Rookie (or Hero) list"

Push changes to GitHub

Push your changes using the command git push:

git push origin <add-your-branch-name>

Submit your Changes for Review

If you go to your repository on GitHub, you'll see a Compare & pull request button. Click on that button.

Now submit the pull request, ensuring you use the provided PR template (either Rookie or Hero).

Once your pull request is merged, your profile will be visible in the list!

License

This project is licensed under the terms of the MIT license. Please see LICENSE for more details.