ci: fix misc generator issues (#4019)

pull/4020/head
James Elliott 2022-09-16 15:16:02 +10:00 committed by GitHub
parent c756c7b67b
commit 3e376404c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 19 additions and 19 deletions

View File

@ -4,7 +4,7 @@ description: Report a bug
labels: labels:
- type/bug/unconfirmed - type/bug/unconfirmed
- status/needs-triage - status/needs-triage
- priority/4-normal - priority/4/normal
body: body:
- type: markdown - type: markdown
attributes: attributes:
@ -17,7 +17,7 @@ body:
2. Please try to give as much information as possible for us to be able to reproduce the issue and provide a quick fix. 2. Please try to give as much information as possible for us to be able to reproduce the issue and provide a quick fix.
3. Please ensure an issue does not already exist for this potential bug. 3. Please ensure an issue does not already exist for this potential bug.
4. Please only provide specific versions. Latest is not a version. 4. Please only provide specific versions. Latest is not a version.
5. Please read the [Troubleshooting Sanitization](https://www.authelia.com/r/sanitize) reference guide if you plan on removing or adjusting any values for the logs or configuration files 5. Please read the [Troubleshooting Sanitization](https://www.authelia.com/r/sanitize) reference guide if you plan on removing or adjusting any values for the logs or configuration files.
- type: dropdown - type: dropdown
id: version id: version
attributes: attributes:
@ -105,6 +105,13 @@ body:
description: Describe how we can reproduce this issue description: Describe how we can reproduce this issue
validations: validations:
required: true required: true
- type: textarea
id: expectations
attributes:
label: Expectations
description: Describe the desired or expected results
validations:
required: false
- type: textarea - type: textarea
id: logs id: logs
attributes: attributes:
@ -121,13 +128,6 @@ body:
render: yaml render: yaml
validations: validations:
required: false required: false
- type: textarea
id: expectations
attributes:
label: Expectations
description: Describe the desired or expected results
validations:
required: false
- type: textarea - type: textarea
id: documentation id: documentation
attributes: attributes:

View File

@ -4,7 +4,7 @@ description: Submit a Feature for Design which Has Been Submitted as an Idea and
labels: labels:
- type/feature - type/feature
- status/needs-design - status/needs-design
- priority/4-normal - priority/4/normal
body: body:
- type: markdown - type: markdown
attributes: attributes:

View File

@ -17,7 +17,7 @@ body:
2. Please try to give as much information as possible for us to be able to reproduce the issue and provide a quick fix. 2. Please try to give as much information as possible for us to be able to reproduce the issue and provide a quick fix.
3. Please ensure an issue does not already exist for this potential bug. 3. Please ensure an issue does not already exist for this potential bug.
4. Please only provide specific versions. Latest is not a version. 4. Please only provide specific versions. Latest is not a version.
5. Please read the [Troubleshooting Sanitization](https://www.authelia.com/r/sanitize) reference guide if you plan on removing or adjusting any values for the logs or configuration files 5. Please read the [Troubleshooting Sanitization](https://www.authelia.com/r/sanitize) reference guide if you plan on removing or adjusting any values for the logs or configuration files.
- type: dropdown - type: dropdown
id: version id: version
attributes: attributes:
@ -75,6 +75,13 @@ body:
description: Describe how we can reproduce this issue description: Describe how we can reproduce this issue
validations: validations:
required: true required: true
- type: textarea
id: expectations
attributes:
label: Expectations
description: Describe the desired or expected results
validations:
required: false
- type: textarea - type: textarea
id: logs id: logs
attributes: attributes:
@ -91,13 +98,6 @@ body:
render: yaml render: yaml
validations: validations:
required: false required: false
- type: textarea
id: expectations
attributes:
label: Expectations
description: Describe the desired or expected results
validations:
required: false
- type: textarea - type: textarea
id: documentation id: documentation
attributes: attributes:

View File

@ -80,7 +80,7 @@ var labelPriorityDescriptions = [...]string{
} }
func (p labelPriority) String() string { func (p labelPriority) String() string {
return fmt.Sprintf("%s/%d-%s", labelAreaPrefixPriority, p+1, strings.ToLower(labelPriorityDescriptions[p])) return fmt.Sprintf("%s/%d/%s", labelAreaPrefixPriority, p+1, strings.ToLower(labelPriorityDescriptions[p]))
} }
func (p labelPriority) Description() string { func (p labelPriority) Description() string {