Skip to content
This repository was archived by the owner on Jan 2, 2024. It is now read-only.

Commit 91897a4

Browse files
authored
Merge pull request ForgeRock#150 from ryanbas21/sdks-1419/add-contributing-file
docs(root): Sdks-1419/add contributing file
2 parents 0d513c7 + 9f8dba4 commit 91897a4

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

CONTRIBUTING.md

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Contributing to Forgerock's Javascript SDK
2+
3+
:+1::tada: First off, thanks for taking the time to contribute! :tada::+1:
4+
5+
The following is a set of guidelines for contributing to the Forgerock SDK and its packages, which are hosted in the [ForgeRock organization](https://github.com/forgerock) on GitHub.
6+
7+
### Git Flow
8+
9+
Fork the repo to your own github account. From there, you can add the ForgeRock repository as an upstream.
10+
11+
`git remote add upstream [email protected]:ForgeRock/forgerock-javascript-sdk.git`
12+
13+
## Here is a checklist of items to ensure your Pull Request is reviewed and ready to be merged:
14+
15+
- [ ] Please make all pull requests against `develop` branch.
16+
- [ ] Fill out the Pull Request template that appears when you open a PR.
17+
- [ ] Please ensure `npm run lint` reports no issues.
18+
- [ ] Please ensure `npm run build` reports no issues.
19+
- [ ] Please ensure `npm run test` reports no failures.
20+
- [ ] Please ensure your PR passes all PR checks.
21+
- [ ] When your PR is ready to merge please rebase your commit into 1 commit.
22+
- [ ] Commits should be verified (meaning you cannot squash your commit on github).
23+
- [ ] Please ensure your code is passing CI in order to get a review.
24+
- [ ] Structure your commit messages similarly to the [Angular Commit Conventions](https://www.conventionalcommits.org/en/v1.0.0-beta.4/#summary).
25+
- [ ] We will only review a PR once a successful CI build is passing.
26+
27+
```bash
28+
<type>(<scope>): <short summary>
29+
<BLANK LINE>
30+
<body>
31+
<BLANK LINE>
32+
<footer>
33+
```

0 commit comments

Comments
 (0)