-
-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ops: add integration form discussions
- Loading branch information
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
title: "[Integration] " | ||
labels: ["Integrations"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thank you for sharing your integration with the Hyas community! | ||
What we look for when reviewing submissions to [Integrations](https://gethyas.com/integrations/): | ||
- Works with the latest release of Hyas | ||
- Free integration source code is available in a public repo | ||
- All npm dependencies used are public | ||
- type: input | ||
id: integration-name | ||
attributes: | ||
label: Integration name | ||
placeholder: My super cool integration | ||
validations: | ||
required: true | ||
- type: input | ||
id: public-repo-url | ||
attributes: | ||
label: Public repo URL | ||
placeholder: 'https://github.com/me/my-integration' | ||
validations: | ||
required: true | ||
- type: input | ||
id: documentation-url | ||
attributes: | ||
label: Documentation URL | ||
placeholder: 'https://github.com/me/my-integration#readme' | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: short-description | ||
attributes: | ||
label: Short description | ||
placeholder: A short description of your integration. This will be displayed on the integrations list page. | ||
validations: | ||
required: true | ||
- type: checkboxes | ||
id: terms | ||
attributes: | ||
label: Terms | ||
options: | ||
- label: I agree to the [Terms of Service](https://gethyas.com/terms/). | ||
required: true |