Thank you for your interest in Testsigma and for taking the time to contribute to this project. If you feel insecure about how to start contributing, feel free to ask us on our Discord Server in the #contributors channel.
Read our Code of Conduct before contributing.
There are many ways in which you can contribute to Testsigma.
Join our Discord server, help others use Testsigma for their test automation requirements.
We display blogs featuring Testsigma on our Blogs page. If you'd like your blog to be published here, write to us at community@testsigma.com.
You can talk about Testsigma in online/offline meetups. Drop a line to community@testsigma.com ahead of time and we'll send you some swag. 👕
Enhance Testsigma’s automation capabilities by building add-ons to solve unique test automation problems. Check out Contribution Guide for more details.
Report all issues through GitHub Issues using the Report a Bug template. Provide as much information as you can.
We welcome all feature requests, whether for new features or enhancements to existing features. File your feature request through GitHub Issues using the Feature Request template.
Suggest improvements to our documentation using the Documentation Improvement template or check out our Docs Contribution Guide. Testsigma docs are published on here
You can help by suggesting improvements to our tutorials using the Tutorials Improvement template or create a new tutorial. Checkout Tutorials Contribution Guide for more details.
We welcome contributions that help make testsigma bug-free & improve the test automation experience for our users. You can also find issues tagged Good First Issues. Check out the below sections to begin.
All submissions, including submissions by project members, require review. Before raising a pull request, ensure you have raised a corresponding issue and discussed a possible solution with a maintainer. This gives your pull request the highest chance of getting merged quickly. Join our Discord Server if you need any help.
We appreciate first-time contributors and we are happy to assist you in getting started. In case of questions, just reach out to us! You find all issues suitable for first-time contributors here.
TestsigmaHQ/testsigma is a mono-repo consisting of 4 components:
- Server
- Agent
- Automator
- UI
For all contributions, a CLA (Contributor License Agreement) needs to be signed here before (or after) the pull request has been submitted. A bot will prompt contributors to sign the CLA via a pull request comment, if necessary.
We use Github Flow, so all code changes happen through pull requests. Learn more.
- Please make sure there is an issue associated with the work that you're doing. If it doesn’t exist, create an issue.
- If you're working on an issue, please comment that you are doing so to prevent duplicate work by others also.
- Fork the repo and create a new branch from the
dev
branch. - Please name the branch as issue-[issue-number]-[issue-name(optional)] or feature-[feature-number]–[feature-name(optional)]. For example, if you are fixing Issue #205 name your branch as issue-205 or issue-205-selectbox-handling-changes
- Squash your commits and refer to the issue using
Fix #<issue-no>
in the commit message, at the start. - Rebase
dev
with your branch and push your changes. - Raise a pull request against the staging branch of the main repository.
Refer to this document to learn how to set up a dev environment.
The repository contains two important (protected) branches.
- main contains the code that is tested and released.
- dev contains recent developments under testing. This branch is set as the default branch, and all pull requests should be made against this branch.
Pull requests should be made against the dev branch. staging contains all of the new features and fixes that are under testing and ready to go out in the next release.
- Please make sure there is an issue associated with the work that you're doing. If it doesn’t exist, create an issue.
- Squash your commits and refer to the issue using
Fix #<issue-no>
in the commit message, at the start. - Rebase
dev
with your branch and push your changes. - Once you are confident in your code changes, create a pull request in your fork to the
dev
branch in the testsigmahq/testsigma base repository. - Link the issue of the base repository in your Pull request description. Guide
- Fill out the Pull Request Template completely within the body of the PR. If you feel some areas are not relevant add
N/A
but don’t delete those sections.
-
The first line should be a summary of the changes, not exceeding 50 characters, followed by an optional body that has more details about the changes. Refer to this link for more information on writing good commit messages.
-
Don't add a period/dot (.) at the end of the summary line.