Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
We appreciate you taking the time to contribute to @octokit/openapi
. Especially as a new contributor, you have a valuable perspective that we lost a long time ago: you will find things confusing and run into problems that no longer occur to us. Please share them with us, so we can make the experience for future contributors the best it could be.
Thank you 💖
I've recorded a video where I work through an update coming from GitHub's official OpenAPI spec.
Find more details or ask questions at gr2m/helpdesk#5
First, fork the repository.
Setup the repository locally. Replace <your account name>
with the name of the account you forked to.
git clone https://github.com/<your account name>/openapi.git
cd openapi
npm install
npm run download
This command relies on a tool called annica. anicca
is created by Marc-André aka @xuorig, who is working on GitHub's OpenAPI spec and the surrounding tooling. It was needed an OpenAPI diff tool and all the tools found couldn't handle the size of GitHub's spec, which is why @xuorig created anicca
in the first place.
It's written in Rust and there is no pre-compiled binary yet that could just run. Once there is the whole setup will become simpler. Until then, the user needs to:
- Clone anicca's repository repository
- Install Rust (if it's not installed yet)
- Define
ANICCA_REPOSITORY_PATH
environment variable pointing to the path where you cloned anicca's repository.
ANICCA_REPOSITORY_PATH='<path_to_my_local_anicca_repo>' npm run build
- Do not submit a pull request that edits an OpenAPI operation. These changes need to be done in https://github.com/github/rest-api-description/.
- Create a new branch locally.
- Make your changes in that branch and push them to your fork
- Submit a pull request from your topic branch to the main branch on the
octokit/openapi
repository. - Be sure to tag any issues your pull request is taking care of / contributing to. Adding "Closes #123" to a pull request description will automatically close the issue once the pull request is merged in.
- Review the changes.
- If there are only description updates, change the PR title to something like
fix: comment updates
. Thefix:
prefix in the squash & merge commit header is important to calculate the next version. - If there are any additions, use a
feat:
prefix. - If there are breaking changes, try to address them by adding an entry to changes/. Avoid breaking changes if at all possible.
- If endpoints have been removed which happens occasionally, release a breaking change of
octokit/openapi
and theoctokit/(openapi-)types.ts
repository, in order to prevent TypeScript build errors for users. The actual libraries and plugins can update to the new breaking versions as part of a fix release.
- If there are only description updates, change the PR title to something like
Releases are automated using semantic-release. The following commit message conventions determine which version is released:
fix: ...
orfix(scope name): ...
prefix in subject: bumps fix version, e.g.1.2.3
→1.2.4
feat: ...
orfeat(scope name): ...
prefix in subject: bumps feature version, e.g.1.2.3
→1.3.0
BREAKING CHANGE:
in body: bumps breaking version, e.g.1.2.3
→2.0.0
Only one version number is bumped at a time, the highest version change trumps the others. Besides publishing a new version to npm, semantic-release also creates a git tag and release on GitHub, generates changelogs from the commit messages and puts them into the release notes.
If the pull request looks good but does not follow the commit conventions, use the Squash & merge button.