You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. Configure and install the dependencies: `npm install`
7
+
1. Create a new branch: `git checkout -b my-branch-name`
8
+
1. Make your change, add tests, and make sure the tests still pass: `npm run test`
9
+
1. Make sure your code is correctly formatted: `npm run format`
10
+
1. Update `dist/index.js` using `npm run build`. This creates a single javascript file that is used as an entrypoint for the action
11
+
1. Push to your fork and submit a pull request
12
+
1. Pat yourself on the back and wait for your pull request to be reviewed and merged
13
+
14
+
Here are a few things you can do that will increase the likelihood of your pull request being accepted:
15
+
16
+
- Write tests.
17
+
- Keep your change as focused as possible. If there are multiple changes you would like to make that are not dependent upon each other, consider submitting them as separate pull requests.
18
+
19
+
## Resources
20
+
21
+
-[How to Contribute to Open Source](https://opensource.guide/how-to-contribute/)
-[Writing good commit messages](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html)
0 commit comments