Skip to content

Commit

Permalink
Populate README with scope and maintenance status (taiidani#49)
Browse files Browse the repository at this point in the history
* Add maintenance status and scope to README

* Add basic package documentation

* Add a couple checks to the PR template
  • Loading branch information
taiidani committed Jun 12, 2021
1 parent 3eac3f7 commit 45c42ad
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@

# Test Steps

- [ ] Have you updated the `docs/` folder to match your change?
- [ ] Have you exercised your change using the `examples/` docker compose setup?

```sh
make testacc
```
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ This is a community provider and is not supported by Hashicorp.

This provider has been published to the Terraform Registry at https://registry.terraform.io/providers/taiidani/jenkins. Please visit the registry for documentation and installation instructions.

## Contributors

This repository is actively maintained as free time allows for me to work on it. I am accepting Issues and Pull Requests and if you are interested in helping as a maintainer I am open to the possibility. Please allow for 2-3 weeks of turnaround time on your contributions.

The scope of the provider covers the entire (extendable) Jenkins API provided that the https://github.com/bndr/gojenkins client library supports it. I accept submissions for functionality outside of Jenkins Core but expect that the plugin(s) required are _clearly stated_ in the documentation. See [jenkins_credential_vault_approle](https://registry.terraform.io/providers/taiidani/jenkins/latest/docs/resources/credential_vault_approle) for an example of this. I can only support these extensions as much as my own ability to test them allows -- Your Mileage May Vary.

## Developing the Provider

Working on this provider requires the following:
Expand Down
5 changes: 5 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
// Package main defines the Jenkins Terraform Provider entrypoint.
//
// This file and the folder structure within the `jenkins/` subfolder conform to the Terraform provider expectations and
// best practices at https://www.terraform.io/docs/extend/. Please see the generated documentation at
// https://registry.terraform.io/providers/taiidani/jenkins for how to use the provider within Terraform itself.
package main

import (
Expand Down

0 comments on commit 45c42ad

Please sign in to comment.