Skip to content

Commit

Permalink
feat: add operator issue template
Browse files Browse the repository at this point in the history
  • Loading branch information
danielwerg committed May 29, 2024
1 parent adbc287 commit 6bce930
Showing 1 changed file with 151 additions and 0 deletions.
151 changes: 151 additions & 0 deletions .github/ISSUE_TEMPLATE/operator.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,151 @@
name: Operator
description: Add an operator
title: '[Operation OPERATION_NAME] OPERATOR_NAME'
labels: ['enhancement']
body:
- type: input
id: name
attributes:
label: Name/Nickname
description: 'Readable name of the operator'
placeholder: 'ex: Sledge, Jäger'
validations:
required: true
- type: dropdown
id: role
attributes:
label: Role
description: 'Role of the operator'
options:
- Attacker
- Defender
validations:
required: true
- type: input
id: org
attributes:
label: Organization
description: 'Operator organisation name'
placeholder: 'ex: FBI, SWAT'
validations:
required: true
- type: input
id: squad
attributes:
label: Squad
description: 'Operator squad name'
placeholder: 'ex: Nighthaven'
validations:
required: true
- type: dropdown
id: speed
attributes:
label: Speed
description: 'Speed rating'
options:
- 1
- 2
- 3
validations:
required: true
- type: dropdown
id: health
attributes:
label: Health
description: 'Health Rating'
options:
- 1
- 2
- 3
validations:
required: true
- type: dropdown
id: difficulty
attributes:
label: Difficilty
description: 'Difficulty rating'
options:
- 1
- 2
- 3
validations:
required: true
- type: dropdown
id: gender
attributes:
label: Gender
description: 'm - Male, f - Female, o - Other, n - None/Not applicable, u - Unknown'
options:
- 'm'
- 'f'
- 'o'
- 'n'
- 'u'
validations:
required: true
- type: input
id: country
attributes:
label: Country
description: 'Country of the operator as a ISO 3166-1 alpha-2 code (two-letter). https://wikipedia.org/wiki/ISO_3166-1_alpha-2'
placeholder: 'ex: DE, SK'
validations:
required: true
- type: input
id: season
attributes:
label: Season
description: 'Season shorthandle when the operator was first introduced to the game'
placeholder: 'ex: Y1S1'
validations:
required: true
- type: input
id: height
attributes:
label: Height
description: 'Height of the operator, in cm.'
placeholder: 'ex: 175'
validations:
required: true
- type: input
id: weight
attributes:
label: Weight
description: 'Weight of the operator, in kg'
placeholder: 'ex: 75'
validations:
required: true
- type: textarea
id: icon
attributes:
label: Icon
description: 'Highiest resolution of operator icon you could find, in-game lossless screenshot, asset packs.'
value: |
<details>
<summary>Expand</summary>
Icon image goes here
</details>
validations:
required: true
- type: textarea
id: reference
attributes:
label: Reference
description: 'Sources of information filled above. Screenshots, urls.'
value: |
<details>
<summary>Expand</summary>
Media files goes here
</details>
- type: textarea
id: additional-information
attributes:
label: Additional Information

0 comments on commit 6bce930

Please sign in to comment.