You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like this PR was raised from the `main` branch.
6
+
7
+
As per [our contributing guidelines](https://github.com/oapi-codegen/oapi-codegen/blob/main/CONTRIBUTING.md#before-you-raise-a-pr), this can make it difficult for us to push changes to your fork - for instance to directly push a change to address a comment that we would raise, or to finalise changes before merge.
8
+
9
+
Please re-raise the PR from a branch on your repository that isn't `main` / any protected branches.
10
+
11
+
Thank you in advance 🙇🏼
12
+
13
+
'auto:no-mentions':
14
+
comment: >
15
+
Thanks for your use of `oapi-codegen`!
16
+
17
+
We are very appreciative of your interest in improving the project, and that you're engaged with us.
18
+
19
+
However, @-mentioning the maintainers will be very unlikely to help move your issue along, and we do not want to encourage behaviour that leads to the "noisiest" users getting the benefit over folks who are waiting their turn.
20
+
21
+
Please remember that `oapi-codegen` is for the most part run by volunteers, and [we have a request out](https://github.com/oapi-codegen/oapi-codegen/discussions/1606) to companies who use the project to help make it more sustainable, with sponsorship.
22
+
23
+
It will only be that sustained financial support will be able to make it possible to work more efficiently towards user requests.
24
+
25
+
For more info on engaging with the maintainers, see [our CONTRIBUTING guide](https://github.com/oapi-codegen/oapi-codegen/blob/main/CONTRIBUTING.md#should-i--mention-the-maintainers-on-an-issue).
26
+
27
+
'auto:pinning-until-release':
28
+
comment: >
29
+
[Until there is a defined release cadence planned](https://github.com/oapi-codegen/oapi-codegen/issues/1519), our [official recommendation](https://github.com/oapi-codegen/oapi-codegen/blob/main/README.md#pinning-to-commits) is that you pin to the latest commit on `main`, which will allow you to pull in this change.
30
+
31
+
'auto:sponsorship':
32
+
comment: >
33
+
Please remember that `oapi-codegen` is for the most part run by volunteers, and [we have a request out](https://github.com/oapi-codegen/oapi-codegen/discussions/1606) to companies who use the project to help make it more sustainable, with sponsorship.
34
+
35
+
If this is high-priority for your organisation, please consider whether you would like to sponsor ongoing maintenance of the project, or that you may want to engage the maintainers to perform a one-off contract/bug bounty.
36
+
37
+
Also remember that although it can seem like "just" a "small change", the maintainers are on the hook for maintaining the changes:
38
+
39
+
> [No is temporary, yes is forever](https://www.oreilly.com/library/view/hands-on-design-patterns/9781789135565/3f396314-dac8-446c-ab02-768ae91296fa.xhtml)
40
+
41
+
'reproduction:needed':
42
+
comment: >
43
+
Thanks for the report!
44
+
45
+
To help maintainers (or other users) help with triaging and fixing of the issue more easily, we need a [Minimal Reproduction](https://github.com/oapi-codegen/oapi-codegen/blob/main/CONTRIBUTING.md#minimal-reproductions) test case.
46
+
47
+
Please follow the instructions, and then share a URL to the repository.
48
+
49
+
We will not accept `.zip` files as reproductions, sorry!
Copy file name to clipboardExpand all lines: configuration-schema.json
+15
Original file line number
Diff line number
Diff line change
@@ -173,6 +173,13 @@
173
173
"type": "boolean",
174
174
"description": "Whether to use the initialism overrides"
175
175
},
176
+
"additional-initialisms": {
177
+
"type": "array",
178
+
"description": "AdditionalInitialisms defines additional initialisms to be used by the code generator. Has no effect unless the `name-normalizer` is set to `ToCamelCaseWithInitialisms`",
179
+
"items": {
180
+
"type": "string"
181
+
}
182
+
},
176
183
"nullable-type": {
177
184
"type": "boolean",
178
185
"description": "Whether to generate nullable type for nullable fields"
@@ -214,6 +221,14 @@
214
221
"required": [
215
222
"path"
216
223
]
224
+
},
225
+
"yaml-tags": {
226
+
"type": "boolean",
227
+
"description": "Enable the generation of YAML tags for struct fields"
228
+
},
229
+
"client-response-bytes-function": {
230
+
"type": "boolean",
231
+
"description": "Enable the generation of a `Bytes()` method on response objects for `ClientWithResponses`"
0 commit comments