ci: fix misc generator issues (#4019)
parent
c756c7b67b
commit
3e376404c5
|
@ -4,7 +4,7 @@ description: Report a bug
|
|||
labels:
|
||||
- type/bug/unconfirmed
|
||||
- status/needs-triage
|
||||
- priority/4-normal
|
||||
- priority/4/normal
|
||||
body:
|
||||
- type: markdown
|
||||
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.
|
||||
3. Please ensure an issue does not already exist for this potential bug.
|
||||
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
|
||||
id: version
|
||||
attributes:
|
||||
|
@ -105,6 +105,13 @@ body:
|
|||
description: Describe how we can reproduce this issue
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: expectations
|
||||
attributes:
|
||||
label: Expectations
|
||||
description: Describe the desired or expected results
|
||||
validations:
|
||||
required: false
|
||||
- type: textarea
|
||||
id: logs
|
||||
attributes:
|
||||
|
@ -121,13 +128,6 @@ body:
|
|||
render: yaml
|
||||
validations:
|
||||
required: false
|
||||
- type: textarea
|
||||
id: expectations
|
||||
attributes:
|
||||
label: Expectations
|
||||
description: Describe the desired or expected results
|
||||
validations:
|
||||
required: false
|
||||
- type: textarea
|
||||
id: documentation
|
||||
attributes:
|
||||
|
|
|
@ -4,7 +4,7 @@ description: Submit a Feature for Design which Has Been Submitted as an Idea and
|
|||
labels:
|
||||
- type/feature
|
||||
- status/needs-design
|
||||
- priority/4-normal
|
||||
- priority/4/normal
|
||||
body:
|
||||
- type: markdown
|
||||
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.
|
||||
3. Please ensure an issue does not already exist for this potential bug.
|
||||
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
|
||||
id: version
|
||||
attributes:
|
||||
|
@ -75,6 +75,13 @@ body:
|
|||
description: Describe how we can reproduce this issue
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
id: expectations
|
||||
attributes:
|
||||
label: Expectations
|
||||
description: Describe the desired or expected results
|
||||
validations:
|
||||
required: false
|
||||
- type: textarea
|
||||
id: logs
|
||||
attributes:
|
||||
|
@ -91,13 +98,6 @@ body:
|
|||
render: yaml
|
||||
validations:
|
||||
required: false
|
||||
- type: textarea
|
||||
id: expectations
|
||||
attributes:
|
||||
label: Expectations
|
||||
description: Describe the desired or expected results
|
||||
validations:
|
||||
required: false
|
||||
- type: textarea
|
||||
id: documentation
|
||||
attributes:
|
||||
|
|
|
@ -80,7 +80,7 @@ var labelPriorityDescriptions = [...]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 {
|
||||
|
|
Loading…
Reference in New Issue