Skip to content

Commit

Permalink
chore: enhance contribution guidelines, fix PR template & add 2 new i…
Browse files Browse the repository at this point in the history
…cons
  • Loading branch information
ixrzr committed Jan 19, 2025
1 parent b42aa08 commit 73f9693
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,12 @@ If you'd like to contribute a new icon, please follow these steps:

- Icons should be placed in the /icons directory. Ensure the icon file is named consistently with the naming convention (e.g., iconname.svg).

### 3. Pull Request Review Process

Once you submit a pull request, the maintainers will review it and may ask for clarifications or changes. Please be responsive to any feedback or requests for changes.

If the pull request opener does not respond to the maintainer's questions or requested changes within **one week**, the pull request may be closed as **abandoned**.

## Code of Conduct

By contributing to this project, you agree to follow our [Code of Conduct](CODE_OF_CONDUCT.md), which sets expectations for respectful and inclusive communication.
Expand Down
4 changes: 2 additions & 2 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

### Icon Name

- () Specify the name of the icon here.
- Specify the name of the icon here.

### Checklist

- [ ] The icon is created using one of the provided [icon templates](icon-templates)
- [ ] The icon is created using one of the provided [icon templates](https://github.com/ixrzr/skills-icons/tree/main/.github/icon-templates)
- [ ] The icon is added to the correct directory (`/icons`).
- [ ] A preview image is attached.
- [ ] The icon name follows the naming convention (e.g., `iconname.svg`).
Expand Down
4 changes: 4 additions & 0 deletions icons/actix.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions icons/stackoverflow.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion src/routes/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ const shortNames: Record<string, string> = {
"kali": "kalilinux",
"lottie": "lottiefiles",
"manifold": "manifoldjs",
"mui": "materialui",
"md": "markdown",
"mongo": "mongodb",
"node": "nodejs",
Expand All @@ -45,12 +46,13 @@ const shortNames: Record<string, string> = {
"sclearn": "scikitlearn",
"solid": "solidjs",
"spring": "springboot",
"so": "stackoverflow",
"tailwind": "tailwindcss",
"ts": "typescript",
"vscode": "visualstudiocode",
"vue": "vuejs",
"wp": "wordpress"
};
}

const shortNamesReverse: Record<string, string[]> = {};
Object.entries(shortNames).forEach(([short, full]) => {
Expand Down

0 comments on commit 73f9693

Please sign in to comment.