Skip to content

Commit

Permalink
fix(bug report template): make production the default option
Browse files Browse the repository at this point in the history
  • Loading branch information
gauthierpetetin committed Jul 15, 2024
1 parent 8be36b5 commit 8ca332b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug-report-extension.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ body:
label: Detection stage
description: At what stage was the bug detected?
options:
- On the development branch
- In production (default)
- During release testing
- In production
- On the development branch
validations:
required: true
- type: input
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/check-template-and-add-labels.ts
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ function extractRegressionStageFromBugReportIssueBody(
return RegressionStage.Development;
case 'During release testing':
return RegressionStage.Testing;
case 'In production':
case 'In production (default)':
return RegressionStage.Production;
default:
return undefined;
Expand Down

0 comments on commit 8ca332b

Please sign in to comment.