From 91a95bb0570057cd6123489a7f3553eb202f103b Mon Sep 17 00:00:00 2001 From: Drew Powers Date: Wed, 4 Dec 2024 10:14:03 -0700 Subject: [PATCH 1/4] Update bug/feature templates --- .github/ISSUE_TEMPLATE/bug-openapi-fetch.md | 42 ++++++++++++++ .../ISSUE_TEMPLATE/bug-openapi-react-query.md | 42 ++++++++++++++ .../ISSUE_TEMPLATE/bug-openapi-typescript.md | 56 +++++++++++++++++++ .github/ISSUE_TEMPLATE/bug-report-fetch.md | 23 -------- .github/ISSUE_TEMPLATE/bug-report-ts.md | 34 ----------- .github/ISSUE_TEMPLATE/bug-swr-openapi.md | 42 ++++++++++++++ .../ISSUE_TEMPLATE/feature-openapi-fetch.md | 30 ++++++++++ .../feature-openapi-react-query.md | 30 ++++++++++ .../feature-openapi-typescript.md | 30 ++++++++++ .../ISSUE_TEMPLATE/feature-request-fetch.md | 19 ------- .github/ISSUE_TEMPLATE/feature-request-ts.md | 19 ------- .github/ISSUE_TEMPLATE/feature-swr-openapi.md | 30 ++++++++++ 12 files changed, 302 insertions(+), 95 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/bug-openapi-fetch.md create mode 100644 .github/ISSUE_TEMPLATE/bug-openapi-react-query.md create mode 100644 .github/ISSUE_TEMPLATE/bug-openapi-typescript.md delete mode 100644 .github/ISSUE_TEMPLATE/bug-report-fetch.md delete mode 100644 .github/ISSUE_TEMPLATE/bug-report-ts.md create mode 100644 .github/ISSUE_TEMPLATE/bug-swr-openapi.md create mode 100644 .github/ISSUE_TEMPLATE/feature-openapi-fetch.md create mode 100644 .github/ISSUE_TEMPLATE/feature-openapi-react-query.md create mode 100644 .github/ISSUE_TEMPLATE/feature-openapi-typescript.md delete mode 100644 .github/ISSUE_TEMPLATE/feature-request-fetch.md delete mode 100644 .github/ISSUE_TEMPLATE/feature-request-ts.md create mode 100644 .github/ISSUE_TEMPLATE/feature-swr-openapi.md diff --git a/.github/ISSUE_TEMPLATE/bug-openapi-fetch.md b/.github/ISSUE_TEMPLATE/bug-openapi-fetch.md new file mode 100644 index 000000000..b9df18f53 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-openapi-fetch.md @@ -0,0 +1,42 @@ +--- +name: "Bug report: openapi-fetch" +about: For the openapi-fetch library +title: "" +labels: openapi-fetch, bug +assignees: "" +body: + - type: input + attributes: + label: Version + placeholder: x.x.x + validations: + required: true + - type: textarea + id: description + attributes: + label: Description + description: A brief description of the bug. Provide either a screenshot or the full error message! + validations: + required: true + - type: textarea + id: repro + attributes: + label: Reproduction + description: How can this be reproduced / when did the error occur? Does the issue occur in a specific browser, or all browsers? Bonus points for a GitHub repository link. + validations: + required: true + - type: textarea + attributes: + label: Expected result + description: (In case it’s not obvious) + validations: + required: true + - type: checkboxes + id: checklist + attributes: + description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com). + options: + - label: I agree to follow this project's [Code of Conduct](https://github.com/openapi-ts/openapi-typescript/blob/main/CODE_OF_CONDUCT.md) + required: true + - label: I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-fetch/CONTRIBUTING.md)) +--- diff --git a/.github/ISSUE_TEMPLATE/bug-openapi-react-query.md b/.github/ISSUE_TEMPLATE/bug-openapi-react-query.md new file mode 100644 index 000000000..5a7b23f0b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-openapi-react-query.md @@ -0,0 +1,42 @@ +--- +name: "Bug report: openapi-fetch" +about: For the openapi-react-query library +title: "" +labels: openapi-react-query, bug +assignees: "" +body: + - type: input + attributes: + label: Version + placeholder: x.x.x + validations: + required: true + - type: textarea + id: description + attributes: + label: Description + description: A brief description of the bug. Provide either a screenshot or the full error message! + validations: + required: true + - type: textarea + id: repro + attributes: + label: Reproduction + description: How can this be reproduced / when did the error occur? Does the issue occur in a specific browser, or all browsers? Bonus points for a GitHub repository link. + validations: + required: true + - type: textarea + attributes: + label: Expected result + description: (In case it’s not obvious) + validations: + required: true + - type: checkboxes + id: checklist + attributes: + description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com). + options: + - label: I agree to follow this project's [Code of Conduct](https://github.com/openapi-ts/openapi-typescript/blob/main/CODE_OF_CONDUCT.md) + required: true + - label: I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-react-query/CONTRIBUTING.md)) +--- diff --git a/.github/ISSUE_TEMPLATE/bug-openapi-typescript.md b/.github/ISSUE_TEMPLATE/bug-openapi-typescript.md new file mode 100644 index 000000000..40bc8ba0c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-openapi-typescript.md @@ -0,0 +1,56 @@ +--- +name: "Bug report: openapi-typescript" +about: For the openapi-typescript library +title: "" +labels: openapi-ts, bug +assignees: "" +body: + - type: input + attributes: + label: openapi-typescript version + placeholder: x.x.x + validations: + required: true + - type: input + attributes: + label: Node.js version + placeholder: 20.x.x + validations: + required: true + - type: input + attributes: + label: OS + version + placeholder: macOS 15.1.1 + validations: + required: true + - type: textarea + id: description + attributes: + label: Description + description: A brief description of the bug. Provide either a screenshot or the full error message! + validations: + required: true + - type: textarea + id: repro + attributes: + label: Reproduction + description: How can this be reproduced / when did the error occur? Does the issue occur in a specific browser, or all browsers? Bonus points for a GitHub repository link. + validations: + required: true + - type: textarea + attributes: + label: Expected result + description: (In case it’s not obvious) + validations: + required: true + - type: checkboxes + id: checklist + attributes: + description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com). + options: + - label: I agree to follow this project's [Code of Conduct](https://github.com/openapi-ts/openapi-typescript/blob/main/CODE_OF_CONDUCT.md) + required: true + - label: My OpenAPI schema is valid and passes the [Redocly validator](https://redocly.com/docs/cli/commands/lint/) (`npx @redocly/cli@latest lint`) + required: true + - label: I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-typescript/CONTRIBUTING.md)) +--- diff --git a/.github/ISSUE_TEMPLATE/bug-report-fetch.md b/.github/ISSUE_TEMPLATE/bug-report-fetch.md deleted file mode 100644 index fdfef2d94..000000000 --- a/.github/ISSUE_TEMPLATE/bug-report-fetch.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -name: "Bug report: openapi-fetch" -about: For the openapi-fetch library -title: "" -labels: openapi-fetch, bug -assignees: "" ---- - -**Description** - -_A brief description of the bug. Provide either a screenshot or the full error message_ - -**Reproduction** - -_How can this be reproduced / when did the error occur? Does the issue occur in a specific browser, or all browsers?_ - -**Expected result** - -_(in case it’s not obvious)_ - -**Checklist** - -- [ ] I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-fetch/CONTRIBUTING.md)) diff --git a/.github/ISSUE_TEMPLATE/bug-report-ts.md b/.github/ISSUE_TEMPLATE/bug-report-ts.md deleted file mode 100644 index 4cab1fc33..000000000 --- a/.github/ISSUE_TEMPLATE/bug-report-ts.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -name: "Bug report: openapi-typescript" -about: For the openapi-typescript library -title: "" -labels: openapi-ts, bug -assignees: "" ---- - -**Description** - -_A brief description of the bug._ - -``` -Paste full error message -``` - -| Name | Version | -| :------------------- | :--------------------------- | -| `openapi-typescript` | `x.x.x` | -| Node.js | `x.x.x` | -| OS + version | `macOS 13, Windows 11, etc.` | - -**Reproduction** - -_How can this be reproduced / when did the error occur?_ - -**Expected result** - -_(in case it’s not obvious)_ - -**Checklist** - -- [ ] My OpenAPI schema passes the [Redocly validator](https://redocly.com/docs/cli/commands/lint/) (`npx @redocly/cli@latest lint`) -- [ ] I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-typescript/CONTRIBUTING.md)) diff --git a/.github/ISSUE_TEMPLATE/bug-swr-openapi.md b/.github/ISSUE_TEMPLATE/bug-swr-openapi.md new file mode 100644 index 000000000..dd2ff5203 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-swr-openapi.md @@ -0,0 +1,42 @@ +--- +name: "Bug report: swr-openapi" +about: For the swr-openapi library +title: "" +labels: swr-openapi, bug +assignees: "" +body: + - type: input + attributes: + label: Version + placeholder: x.x.x + validations: + required: true + - type: textarea + id: description + attributes: + label: Description + description: A brief description of the bug. Provide either a screenshot or the full error message! + validations: + required: true + - type: textarea + id: repro + attributes: + label: Reproduction + description: How can this be reproduced / when did the error occur? Does the issue occur in a specific browser, or all browsers? Bonus points for a GitHub repository link. + validations: + required: true + - type: textarea + attributes: + label: Expected result + description: (In case it’s not obvious) + validations: + required: true + - type: checkboxes + id: checklist + attributes: + description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com). + options: + - label: I agree to follow this project's [Code of Conduct](https://github.com/openapi-ts/openapi-typescript/blob/main/CODE_OF_CONDUCT.md) + required: true + - label: I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/swr-openapi/CONTRIBUTING.md)) +--- diff --git a/.github/ISSUE_TEMPLATE/feature-openapi-fetch.md b/.github/ISSUE_TEMPLATE/feature-openapi-fetch.md new file mode 100644 index 000000000..d4e30751e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-openapi-fetch.md @@ -0,0 +1,30 @@ +--- +name: "Feature request: openapi-fetch" +about: For the openapi-fetch library +title: "" +labels: openapi-fetch, enhancement, help wanted +assignees: "" +body: + - type: textarea + id: description + attributes: + label: Description + description: Brief description of the problem you’re trying to solve, and why this could be useful. + validations: + required: true + - type: textarea + id: proposal + attributes: + label: Proposal + description: Write out the proposed syntax change. Please reference any prior art or similar examples. + validations: + required: true + - type: checkboxes + id: checklist + attributes: + description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com). + options: + - label: I agree to follow this project's [Code of Conduct](https://github.com/openapi-ts/openapi-typescript/blob/main/CODE_OF_CONDUCT.md) + required: true + - label: I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-fetch/CONTRIBUTING.md)) +--- diff --git a/.github/ISSUE_TEMPLATE/feature-openapi-react-query.md b/.github/ISSUE_TEMPLATE/feature-openapi-react-query.md new file mode 100644 index 000000000..f55893a84 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-openapi-react-query.md @@ -0,0 +1,30 @@ +--- +name: "Feature request: openapi-react-query" +about: For the openapi-react-query library +title: "" +labels: openapi-react-query, enhancement, help wanted +assignees: "" +body: + - type: textarea + id: description + attributes: + label: Description + description: Brief description of the problem you’re trying to solve, and why this could be useful. + validations: + required: true + - type: textarea + id: proposal + attributes: + label: Proposal + description: Write out the proposed syntax change. Please reference any prior art or similar examples. + validations: + required: true + - type: checkboxes + id: checklist + attributes: + description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com). + options: + - label: I agree to follow this project's [Code of Conduct](https://github.com/openapi-ts/openapi-typescript/blob/main/CODE_OF_CONDUCT.md) + required: true + - label: I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-react-query/CONTRIBUTING.md)) +--- diff --git a/.github/ISSUE_TEMPLATE/feature-openapi-typescript.md b/.github/ISSUE_TEMPLATE/feature-openapi-typescript.md new file mode 100644 index 000000000..a0b105835 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-openapi-typescript.md @@ -0,0 +1,30 @@ +--- +name: "Feature request: openapi-typescript" +about: For the openapi-typescript library +title: "" +labels: openapi-ts, enhancement, help wanted +assignees: "" +body: + - type: textarea + id: description + attributes: + label: Description + description: Brief description of the problem you’re trying to solve, and why this could be useful. + validations: + required: true + - type: textarea + id: proposal + attributes: + label: Proposal + description: Outline the change to the library. If this is for the CLI, propose a flag name and/or workflow. If this is for Node API, propose how this would be consumed. Reference any prior art or similar examples. + validations: + required: true + - type: checkboxes + id: checklist + attributes: + description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com). + options: + - label: I agree to follow this project's [Code of Conduct](https://github.com/openapi-ts/openapi-typescript/blob/main/CODE_OF_CONDUCT.md) + required: true + - label: I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-typescript/CONTRIBUTING.md)) +--- diff --git a/.github/ISSUE_TEMPLATE/feature-request-fetch.md b/.github/ISSUE_TEMPLATE/feature-request-fetch.md deleted file mode 100644 index 9fc92d933..000000000 --- a/.github/ISSUE_TEMPLATE/feature-request-fetch.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -name: "Feature request: openapi-fetch" -about: For the openapi-fetch library -title: "" -labels: openapi-fetch, enhancement, help wanted -assignees: "" ---- - -**Description** - -_Brief description of the problem you’re trying to solve, and why this could be useful._ - -**Proposal** - -_Write out the proposed syntax change. Please reference any prior art or similar examples._ - -**Checklist** - -- [ ] I’m willing to open a PR for this (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-fetch/CONTRIBUTING.md)) diff --git a/.github/ISSUE_TEMPLATE/feature-request-ts.md b/.github/ISSUE_TEMPLATE/feature-request-ts.md deleted file mode 100644 index 1363a7f86..000000000 --- a/.github/ISSUE_TEMPLATE/feature-request-ts.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -name: "Feature request: openapi-typescript" -about: For the openapi-typescript library -title: "" -labels: openapi-ts, enhancement, help wanted -assignees: "" ---- - -**Description** - -_Brief description of the problem you’re trying to solve, and why this could be useful._ - -**Proposal** - -_Outline the change to the library. If this is for the CLI, propose a flag name and/or workflow. If this is for Node API, propose how this would be consumed. Reference any prior art or similar examples._ - -**Checklist** - -- [ ] I’m willing to open a PR for this (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-typescript/CONTRIBUTING.md)) diff --git a/.github/ISSUE_TEMPLATE/feature-swr-openapi.md b/.github/ISSUE_TEMPLATE/feature-swr-openapi.md new file mode 100644 index 000000000..538596354 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-swr-openapi.md @@ -0,0 +1,30 @@ +--- +name: "Feature request: swr-openapi" +about: For the swr-openapi library +title: "" +labels: swr-openapi, enhancement, help wanted +assignees: "" +body: + - type: textarea + id: description + attributes: + label: Description + description: Brief description of the problem you’re trying to solve, and why this could be useful. + validations: + required: true + - type: textarea + id: proposal + attributes: + label: Proposal + description: Write out the proposed syntax change. Please reference any prior art or similar examples. + validations: + required: true + - type: checkboxes + id: checklist + attributes: + description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com). + options: + - label: I agree to follow this project's [Code of Conduct](https://github.com/openapi-ts/openapi-typescript/blob/main/CODE_OF_CONDUCT.md) + required: true + - label: I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/swr-openapi/CONTRIBUTING.md)) +--- From debe7af59e0451dc996dd095c15839d4ce920d48 Mon Sep 17 00:00:00 2001 From: Drew Powers Date: Thu, 19 Dec 2024 09:05:30 -0700 Subject: [PATCH 2/4] Fix package name --- .github/ISSUE_TEMPLATE/bug-openapi-react-query.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug-openapi-react-query.md b/.github/ISSUE_TEMPLATE/bug-openapi-react-query.md index 5a7b23f0b..0105ccfa5 100644 --- a/.github/ISSUE_TEMPLATE/bug-openapi-react-query.md +++ b/.github/ISSUE_TEMPLATE/bug-openapi-react-query.md @@ -1,5 +1,5 @@ --- -name: "Bug report: openapi-fetch" +name: "Bug report: openapi-react-query" about: For the openapi-react-query library title: "" labels: openapi-react-query, bug From 12d23075c438e964fa00240bfec6bbf84aac9ffd Mon Sep 17 00:00:00 2001 From: Drew Powers Date: Thu, 19 Dec 2024 09:09:30 -0700 Subject: [PATCH 3/4] Simplify templates --- .github/ISSUE_TEMPLATE/bug-openapi-fetch.md | 3 --- .github/ISSUE_TEMPLATE/bug-openapi-react-query.md | 3 --- .github/ISSUE_TEMPLATE/bug-openapi-typescript.md | 3 --- .github/ISSUE_TEMPLATE/bug-swr-openapi.md | 3 --- .github/ISSUE_TEMPLATE/feature-openapi-fetch.md | 3 --- .github/ISSUE_TEMPLATE/feature-openapi-react-query.md | 3 --- .github/ISSUE_TEMPLATE/feature-openapi-typescript.md | 3 --- .github/ISSUE_TEMPLATE/feature-swr-openapi.md | 3 --- 8 files changed, 24 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-openapi-fetch.md b/.github/ISSUE_TEMPLATE/bug-openapi-fetch.md index b9df18f53..6e50e1289 100644 --- a/.github/ISSUE_TEMPLATE/bug-openapi-fetch.md +++ b/.github/ISSUE_TEMPLATE/bug-openapi-fetch.md @@ -34,9 +34,6 @@ body: - type: checkboxes id: checklist attributes: - description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com). options: - - label: I agree to follow this project's [Code of Conduct](https://github.com/openapi-ts/openapi-typescript/blob/main/CODE_OF_CONDUCT.md) - required: true - label: I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-fetch/CONTRIBUTING.md)) --- diff --git a/.github/ISSUE_TEMPLATE/bug-openapi-react-query.md b/.github/ISSUE_TEMPLATE/bug-openapi-react-query.md index 0105ccfa5..4a25a62aa 100644 --- a/.github/ISSUE_TEMPLATE/bug-openapi-react-query.md +++ b/.github/ISSUE_TEMPLATE/bug-openapi-react-query.md @@ -34,9 +34,6 @@ body: - type: checkboxes id: checklist attributes: - description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com). options: - - label: I agree to follow this project's [Code of Conduct](https://github.com/openapi-ts/openapi-typescript/blob/main/CODE_OF_CONDUCT.md) - required: true - label: I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-react-query/CONTRIBUTING.md)) --- diff --git a/.github/ISSUE_TEMPLATE/bug-openapi-typescript.md b/.github/ISSUE_TEMPLATE/bug-openapi-typescript.md index 40bc8ba0c..63509a33b 100644 --- a/.github/ISSUE_TEMPLATE/bug-openapi-typescript.md +++ b/.github/ISSUE_TEMPLATE/bug-openapi-typescript.md @@ -46,10 +46,7 @@ body: - type: checkboxes id: checklist attributes: - description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com). options: - - label: I agree to follow this project's [Code of Conduct](https://github.com/openapi-ts/openapi-typescript/blob/main/CODE_OF_CONDUCT.md) - required: true - label: My OpenAPI schema is valid and passes the [Redocly validator](https://redocly.com/docs/cli/commands/lint/) (`npx @redocly/cli@latest lint`) required: true - label: I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-typescript/CONTRIBUTING.md)) diff --git a/.github/ISSUE_TEMPLATE/bug-swr-openapi.md b/.github/ISSUE_TEMPLATE/bug-swr-openapi.md index dd2ff5203..708cc91ed 100644 --- a/.github/ISSUE_TEMPLATE/bug-swr-openapi.md +++ b/.github/ISSUE_TEMPLATE/bug-swr-openapi.md @@ -34,9 +34,6 @@ body: - type: checkboxes id: checklist attributes: - description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com). options: - - label: I agree to follow this project's [Code of Conduct](https://github.com/openapi-ts/openapi-typescript/blob/main/CODE_OF_CONDUCT.md) - required: true - label: I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/swr-openapi/CONTRIBUTING.md)) --- diff --git a/.github/ISSUE_TEMPLATE/feature-openapi-fetch.md b/.github/ISSUE_TEMPLATE/feature-openapi-fetch.md index d4e30751e..af26e4dea 100644 --- a/.github/ISSUE_TEMPLATE/feature-openapi-fetch.md +++ b/.github/ISSUE_TEMPLATE/feature-openapi-fetch.md @@ -22,9 +22,6 @@ body: - type: checkboxes id: checklist attributes: - description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com). options: - - label: I agree to follow this project's [Code of Conduct](https://github.com/openapi-ts/openapi-typescript/blob/main/CODE_OF_CONDUCT.md) - required: true - label: I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-fetch/CONTRIBUTING.md)) --- diff --git a/.github/ISSUE_TEMPLATE/feature-openapi-react-query.md b/.github/ISSUE_TEMPLATE/feature-openapi-react-query.md index f55893a84..77ef8f0f3 100644 --- a/.github/ISSUE_TEMPLATE/feature-openapi-react-query.md +++ b/.github/ISSUE_TEMPLATE/feature-openapi-react-query.md @@ -22,9 +22,6 @@ body: - type: checkboxes id: checklist attributes: - description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com). options: - - label: I agree to follow this project's [Code of Conduct](https://github.com/openapi-ts/openapi-typescript/blob/main/CODE_OF_CONDUCT.md) - required: true - label: I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-react-query/CONTRIBUTING.md)) --- diff --git a/.github/ISSUE_TEMPLATE/feature-openapi-typescript.md b/.github/ISSUE_TEMPLATE/feature-openapi-typescript.md index a0b105835..a46853e9d 100644 --- a/.github/ISSUE_TEMPLATE/feature-openapi-typescript.md +++ b/.github/ISSUE_TEMPLATE/feature-openapi-typescript.md @@ -22,9 +22,6 @@ body: - type: checkboxes id: checklist attributes: - description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com). options: - - label: I agree to follow this project's [Code of Conduct](https://github.com/openapi-ts/openapi-typescript/blob/main/CODE_OF_CONDUCT.md) - required: true - label: I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-typescript/CONTRIBUTING.md)) --- diff --git a/.github/ISSUE_TEMPLATE/feature-swr-openapi.md b/.github/ISSUE_TEMPLATE/feature-swr-openapi.md index 538596354..2bef4d622 100644 --- a/.github/ISSUE_TEMPLATE/feature-swr-openapi.md +++ b/.github/ISSUE_TEMPLATE/feature-swr-openapi.md @@ -22,9 +22,6 @@ body: - type: checkboxes id: checklist attributes: - description: By submitting this issue, you agree to follow our [Code of Conduct](https://example.com). options: - - label: I agree to follow this project's [Code of Conduct](https://github.com/openapi-ts/openapi-typescript/blob/main/CODE_OF_CONDUCT.md) - required: true - label: I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/swr-openapi/CONTRIBUTING.md)) --- From 1aa721508bf80e64c4b322e5f8d364b5ad236de4 Mon Sep 17 00:00:00 2001 From: Drew Powers Date: Thu, 19 Dec 2024 09:10:11 -0700 Subject: [PATCH 4/4] Improve wording --- .github/ISSUE_TEMPLATE/feature-openapi-fetch.md | 2 +- .github/ISSUE_TEMPLATE/feature-openapi-react-query.md | 2 +- .github/ISSUE_TEMPLATE/feature-swr-openapi.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/feature-openapi-fetch.md b/.github/ISSUE_TEMPLATE/feature-openapi-fetch.md index af26e4dea..6e33023d8 100644 --- a/.github/ISSUE_TEMPLATE/feature-openapi-fetch.md +++ b/.github/ISSUE_TEMPLATE/feature-openapi-fetch.md @@ -16,7 +16,7 @@ body: id: proposal attributes: label: Proposal - description: Write out the proposed syntax change. Please reference any prior art or similar examples. + description: Describe the proposed syntax change. Please reference any prior art or similar examples. validations: required: true - type: checkboxes diff --git a/.github/ISSUE_TEMPLATE/feature-openapi-react-query.md b/.github/ISSUE_TEMPLATE/feature-openapi-react-query.md index 77ef8f0f3..25b7b6dcd 100644 --- a/.github/ISSUE_TEMPLATE/feature-openapi-react-query.md +++ b/.github/ISSUE_TEMPLATE/feature-openapi-react-query.md @@ -16,7 +16,7 @@ body: id: proposal attributes: label: Proposal - description: Write out the proposed syntax change. Please reference any prior art or similar examples. + description: Describe the proposed syntax change. Please reference any prior art or similar examples. validations: required: true - type: checkboxes diff --git a/.github/ISSUE_TEMPLATE/feature-swr-openapi.md b/.github/ISSUE_TEMPLATE/feature-swr-openapi.md index 2bef4d622..bb5ccf5dc 100644 --- a/.github/ISSUE_TEMPLATE/feature-swr-openapi.md +++ b/.github/ISSUE_TEMPLATE/feature-swr-openapi.md @@ -16,7 +16,7 @@ body: id: proposal attributes: label: Proposal - description: Write out the proposed syntax change. Please reference any prior art or similar examples. + description: Describe the proposed syntax change. Please reference any prior art or similar examples. validations: required: true - type: checkboxes