Learn about our Commitment to Open Source.
Hi! We are really excited that you are interested in contributing to Checkly Pulumi Provider, and we really appreciate your commitment. Before submitting your contribution, please make sure to take a moment and read through the following guidelines:
- Code of Conduct
- Issue Reporting Guidelines
- Pull Request Guidelines
- Development Setup
- Scripts
- Project Structure
- Release Process
- Always use GitHub issues to create new issues and select the corresponding issue template.
-
Checkout a topic branch from a base branch, e.g.
main
, and merge back against that branch. -
Make sure to tick the "Allow edits from maintainers" box. This allows us to directly make minor edits / refactors and saves a lot of time.
-
Add accompanying documentation, usage samples & test cases
-
Add/update demo files to showcase your changes.
-
Use existing resources as templates and ensure that each property has a corresponding
description
field. -
Each PR should be linked with an issue, use GitHub keywords for that.
-
Be sure to follow up project code styles (
$ make fmt
) -
If adding a new feature:
- Provide a convincing reason to add this feature. Ideally, you should open a "feature request" issue first and have it approved before working on it (it should has the label "state: confirmed")
- Each new feature should be linked to
-
If fixing a bug:
- Provide a detailed description of the bug in the PR. A working demo would be great!
-
It's OK to have multiple small commits as you work on the PR - GitHub can automatically squash them before merging.
-
Make sure tests pass!
-
Commit messages must follow the semantic commit messages so that changelogs can be automatically generated.
The development branch is main
. This is the branch that all pull requests should be made against.
⚠️ Before you start, is recommended to have a good understanding on how the provider works, the resources it has and its different configurations. Here are the "getting started" guides.
- Terraform >= v1.2.2
- Pulumi >= v3.0.0
- Go >= v1.17.0
- Node.js >=v 14.0.0
- pulumictl
- yarn
- TypeScript
- Python
- .Net
After you have installed Pulumi and Go, you can clone the repository and start working on the main
branch.
If you don't need the whole git history, you can clone with depth 1 to reduce the download size:
$ git clone --depth=1 [email protected]:checkly/pulumi-checkly.git
- Navigate into the project and create a new branch:
cd pulumi-checkly && git checkout -b MY_BRANCH_NAME
- Download go packages
$ go mod tidy
You are ready to go, take a look at the dev
script so you can start testing your local changes.
In order to facilitate the development process, we have a Makefile
with a few scripts that are used to build, test and run working examples.
TBA
TBA
The release process is automatically handled with goreleaser and GitHub release
action.
To trigger a new release you need to create a new git tag, using SemVer pattenr and then push it to the main
branch.
Remember to create releases candidates releases and spend some time testing in production before publishin a final version. You can also tag the release as "Pre-Release" on GitHub until you consider it mature enough.