-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from fairsource/cwlw/issue-templates
Start two issue templates
- Loading branch information
Showing
2 changed files
with
62 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,32 @@ | ||
name: Propose a Company | ||
description: Submit your company for official recognition as Fair Source. | ||
body: | ||
- type: input | ||
id: name | ||
attributes: | ||
label: Company Name | ||
placeholder: "e.g., Acme" | ||
validations: | ||
required: true | ||
- type: input | ||
id: link | ||
attributes: | ||
label: Announcement Link | ||
placeholder: "https://acme.blog/foo-is-now-fair-source" | ||
validations: | ||
required: true | ||
- type: input | ||
id: background | ||
attributes: | ||
label: Background Color | ||
description: We will use this color behind your logo. | ||
placeholder: "e.g., #6495ED" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: Please upload your logo here, along with anything else you wish to add. | ||
validations: | ||
required: true |
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,30 @@ | ||
name: Propose a License | ||
description: Submit a new license for official recognition as Fair Source. | ||
body: | ||
- type: input | ||
id: name | ||
attributes: | ||
label: License Name | ||
placeholder: "e.g., Foo License, v 1.0" | ||
validations: | ||
required: true | ||
- type: input | ||
id: identifier | ||
attributes: | ||
label: License Short Identifier | ||
placeholder: "e.g., FOO-1.0" | ||
validations: | ||
required: true | ||
- type: input | ||
id: link | ||
attributes: | ||
label: Link | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
validations: | ||
required: true | ||
|