Skip to content

Commit

Permalink
Merge branch 'main' into defect/indirect
Browse files Browse the repository at this point in the history
  • Loading branch information
rarkins committed Dec 16, 2022
2 parents 6ff7b71 + 33bf373 commit ef47203
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ body:
label: Have you created a minimal reproduction repository?
description: Please read the [minimal reproductions documentation](https://github.com/renovatebot/renovate/blob/main/docs/development/minimal-reproductions.md) to learn how to make a good minimal reproduction repository.
options:
- 'I have linked to a minimal reproduction repository in the bug description'
- 'No reproduction, but I have linked to a public repo where it occurs'
- 'No reproduction repository'
- 'No reproduction, but I have linked to a public repo where it occurs'
- 'I have linked to a minimal reproduction repository in the bug description'
validations:
required: true
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ body:
attributes:
label: Is this a feature you are interested in implementing yourself?
options:
- 'Yes'
- 'Maybe'
- 'No'
- 'Maybe'
- 'Yes'
validations:
required: true
4 changes: 2 additions & 2 deletions lib/config/migrations/migrations-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export class MigrationsService {

for (const [key, value] of Object.entries(originalConfig)) {
migratedConfig[key] ??= value;
const migration = MigrationsService.#getMigration(migrations, key);
const migration = MigrationsService.getMigration(migrations, key);

if (migration) {
migration.run(value, key);
Expand Down Expand Up @@ -202,7 +202,7 @@ export class MigrationsService {
return migrations;
}

static #getMigration(
private static getMigration(
migrations: ReadonlyArray<Migration>,
key: string
): Migration | undefined {
Expand Down

0 comments on commit ef47203

Please sign in to comment.