fix typo in config type

fa930db0748400180b3f31c70c5e70a401778201

Tucker McKnight <tucker@pangolin.lan> | Wed Dec 31 2025

fix typo in config type
schemas/ReposConfiguration.json:5
Before
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
    "GitConfig": {
      "additionalProperties": false,
      "properties": {
        "artifactSteps": {
          "items": {
            "additionalProperties": false,
            "properties": {
              "command": {
                "type": "string"
              },
              "copyFrom": {
                "type": "string"
              },
              "copyTo": {
                "type": "string"
              }
            },
            "required": [
              "command",
              "copyFrom",
              "copyTo"
            ],
            "type": "object"
          },
          "type": "array"
        },
        "branchesToPull": {
          "items": {
            "anyOf": [
After
4
5
6























7
8
    "GitConfig": {
      "additionalProperties": false,
      "properties": {
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
        "branchesToPull": {
          "items": {
            "anyOf": [
schemas/ReposConfiguration.json:54
Before
53
54
55























56
57
          },
          "type": "array"
        },
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
⁣
        "defaultBranch": {
          "type": "string"
        },
After
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
          },
          "type": "array"
        },
        "buildSteps": {
          "items": {
            "additionalProperties": false,
            "properties": {
              "command": {
                "type": "string"
              },
              "copyFrom": {
                "type": "string"
              },
              "copyTo": {
                "type": "string"
              }
            },
            "required": [
              "command",
              "copyFrom",
              "copyTo"
            ],
            "type": "object"
          },
          "type": "array"
        },
        "defaultBranch": {
          "type": "string"
        },
src/configTypes.ts:58
Before
57
58
59
60
61
62
63
64
65
  languageExtensions?: {
    [fileExtension: string]: string
  },
  buildSteps?: 
      command: string,
      copyFrom: string,
      copyTo: string,
  }[],
  defaultTemplateConfiguration?: {
    homepageButtons: Array<{
After
57
58
59
60
61
62
63
64
65
  languageExtensions?: {
    [fileExtension: string]: string
  },
  buildSteps?: {
    command: string,
    copyFrom: string,
    copyTo: string,
  }[],
  defaultTemplateConfiguration?: {
    homepageButtons: Array<{