Skip to content

Latest commit

 

History

History
107 lines (67 loc) · 5.53 KB

CONTRIBUTING.md

File metadata and controls

107 lines (67 loc) · 5.53 KB

Octicons Contribution Guidelines (Currently GitHub Staff only)

Thank you for your interest in contributing to Octicons! We are currently only accepting submissions from GitHub staff and only include icons that are used in the GitHub UI. If you'd like to submit feedback, a bug, or an idea for improvement, please open a new issue in this repo using the appropriate issue template.

Icon request and review process

1. Icon review request is made

  • Icon review requests are made using the icon request template in the github/primer repo (visible to GitHub staff only).
  • Icons in the Primer Roadmap inbox will be triaged by a maintainer from the Octicons team. Maintainers should reply with a comment on the issue and then move the issue to Primer Teams Backlog.

2. Working on icons

  • If an icon recommendation can be made async, we will discuss it in #primer-octicons or directly in the issue.
  • Icon review requests require a working session, we will send an invitation.
    • Once an icon has been assigned, it's up to assigned designer to be responsible for communicating the icon's status and drive the work forward.

3. Icon design, review, and communication

  • Once design has been started on an icon, the request issue will be moved to the Design in Progress column of the Primer Teams Backlog.
  • Designers should design the icon in Figma and when ready for review, use the Octicons Push plugin to create a PR
    • After a PR is created link to the PR in the icon request issue. PRs need approval from the icon requestor (stakeholder) and at least one designer on the octicons maintainer team.

4. Icon request completed

  • When an icon request PR has been approved, communicate that in the issue.
  • After the Octicons release, the new icons that were added will have their request issues moved to the Done column

Adding or updating an icon

Follow these steps to add or update an icon.

1. Clone the repository

# Clone the repository
git clone https://github.com/primer/octicons

# Navigate to the newly cloned directory
cd octicons

If you don't have write access to the primer/octicons repository, instead of cloning the repository directly, you'll need to fork the project, clone your fork, and configure the remotes:

# Clone your fork of the repository
git clone https://github.com/<your-username>/octicons

# Navigate to the newly cloned directory
cd octicons

# Assign the original repo to a remote called "upstream"
git remote add upstream https://github.com/primer/octicons

2. Create a new feature branch

git checkout -b <branch-name>

3. Add or update SVG files in the /icons directory

4. Add or update keywords in keywords.json

{
  "mark-github": ["octocat", "brand", "github", "logo"],
+ "your-icon": ["foo", "bar"]
}

5. Commit and push changes

git add .
git commit -m <message>
git push

6. Create a pull request

Use GitHub to create a pull request for your branch. In your pull request description, be sure to mention where the icon will be used and any relevant timeline information.

If everything looks good, a maintainer will approve and merge the pull request when appropriate. After the pull request is merged, your icon will be available in the next Octicons release.

Releasing changes

Once submitted changes have been agreed upon, these instructions will guide maintainers through releasing changes.

Releases are managed by 🦋 Changesets which is a great tool for managing major/minor/patch bumps and changelogs. More info can be found in our how we work docs.

We have the changeset-bot comment on new pull requests asking contributors or maintainers to add a changeset file, which will become the markdown supported changelog entry for the change.

When creating the changeset always commit into the working branch (pull request branch), not main.

When a pull request is approved merge it into the main branch. The changeset action will then create a Release pull request that includes this new pull request.

Once maintainers have agreed and are satisfied with the release. Merge the Release pull request. Changesets will then publish a new GitHub release to the repository with the changelog and new version number. A second action will be triggered by this release and publish the new versions to npm and rubygems.

🎉 Congratulations! The new release has been published.

Other contributions

When contributing to Octicons outside of adding a new icon or release-dependent contribution, be sure to add the skip-changeset label to the pull request. This will allow for the pull request to skip the changeset check and have the ability to be merged into the main branch.

Examples of other contributions include adding documentation or improving a GitHub Actions workflows.