From c30502ee1b3c6f18a02c1739127728947b893ba7 Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Wed, 5 May 2021 09:56:55 -0700 Subject: [PATCH] ci: use issue forms for issue creation (#42099) Use new issue forms from Github for creating issues. PR Close #42099 --- .github/ISSUE_TEMPLATE/1-bug-report.md | 66 --------------- .github/ISSUE_TEMPLATE/1-bug-report.yaml | 84 +++++++++++++++++++ .github/ISSUE_TEMPLATE/2-feature-request.md | 31 ------- .github/ISSUE_TEMPLATE/2-feature-request.yaml | 46 ++++++++++ .github/ISSUE_TEMPLATE/3-docs-bug.md | 48 ----------- .github/ISSUE_TEMPLATE/3-docs-bug.yaml | 42 ++++++++++ 6 files changed, 172 insertions(+), 145 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/1-bug-report.md create mode 100644 .github/ISSUE_TEMPLATE/1-bug-report.yaml delete mode 100644 .github/ISSUE_TEMPLATE/2-feature-request.md create mode 100644 .github/ISSUE_TEMPLATE/2-feature-request.yaml delete mode 100644 .github/ISSUE_TEMPLATE/3-docs-bug.md create mode 100644 .github/ISSUE_TEMPLATE/3-docs-bug.yaml diff --git a/.github/ISSUE_TEMPLATE/1-bug-report.md b/.github/ISSUE_TEMPLATE/1-bug-report.md deleted file mode 100644 index f918378db6..0000000000 --- a/.github/ISSUE_TEMPLATE/1-bug-report.md +++ /dev/null @@ -1,66 +0,0 @@ ---- -name: "Bug Report" -about: Report a bug in the Angular Framework ---- - - - -# Bug Report - -### Affected Package - - The issue is caused by package @angular/.... - - -### Is this a regression? - - - Yes, the previous version in which this bug was not present was: .... - - -### Description - A clear and concise description of the problem... - - -## Minimal Reproduction - - https://stackblitz.com/... - - - -## Exception or Error -

-
-
-
- - -## Your Environment - -**Angular Version:** -

-
-
-
- -**Anything else relevant?** - - - diff --git a/.github/ISSUE_TEMPLATE/1-bug-report.yaml b/.github/ISSUE_TEMPLATE/1-bug-report.yaml new file mode 100644 index 0000000000..243c2fc9f5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/1-bug-report.yaml @@ -0,0 +1,84 @@ +name: Bug Report +description: Report a bug in the Angular Framework + +body: + - type: dropdown + id: affected-packages + attributes: + label: Which @angular/* package(s) are the source of the bug? + options: + - animations + - bazel + - common + - compiler-cli + - compiler + - elements + - forms + - language-service + - localize + - platform-browser-dynamic + - platform-browser + - platform-server + - router + - service-worker + - upgrade + - Don't known / other + multiple: true + validations: + required: true + + - type: dropdown + id: is-regression + attributes: + label: Is this a regression? + options: + - 'Yes' + - 'No' + validations: + required: true + + - type: textarea + id: description + attributes: + label: Description + validations: + required: true + + - type: input + id: reproduction + attributes: + label: Please provide a link to a minimal reproduction of the bug + + - type: textarea + id: exception-or-error + attributes: + label: Please provide the exception or error you saw + render: true + + - type: textarea + id: environment + attributes: + label: Please provide the environment you discovered this bug in + render: true + placeholder: | + Angular CLI: 12.0.5 + Node: 14.17.0 + Package Manager: yarn 1.22.10 + OS: linux x64 + + Angular: 12.0.5 + ... animations, cli, common, compiler, compiler-cli, core, forms + ... platform-browser, platform-browser-dynamic, router + + Package Version + --------------------------------------------------------- + @angular-devkit/architect 0.1200.5 + @angular-devkit/build-angular 12.0.5 + @angular-devkit/core 12.0.5 + rxjs 6.6.7 + typescript 4.2.4 + + - type: textarea + id: other + attributes: + label: Anything else? diff --git a/.github/ISSUE_TEMPLATE/2-feature-request.md b/.github/ISSUE_TEMPLATE/2-feature-request.md deleted file mode 100644 index c88cc8186b..0000000000 --- a/.github/ISSUE_TEMPLATE/2-feature-request.md +++ /dev/null @@ -1,31 +0,0 @@ ---- -name: "Feature Request" -about: Suggest a feature for Angular Framework ---- - - - -# Feature Request - -### Relevant Package - - This feature request is for @angular/.... - - -### Description - A clear and concise description of the problem or missing capability... - - -### Describe the solution you'd like - If you have a solution in mind, please describe it. - - -### Describe alternatives you've considered - Have you considered any alternative solutions or workarounds? diff --git a/.github/ISSUE_TEMPLATE/2-feature-request.yaml b/.github/ISSUE_TEMPLATE/2-feature-request.yaml new file mode 100644 index 0000000000..5954acabfc --- /dev/null +++ b/.github/ISSUE_TEMPLATE/2-feature-request.yaml @@ -0,0 +1,46 @@ +name: 'Feature Request' +description: Suggest a feature for Angular Framework + +body: + - type: dropdown + id: affected-packages + attributes: + label: Which @angular/* package(s) are relevant/releated to the feature request? + options: + - animations + - bazel + - common + - compiler-cli + - compiler + - elements + - forms + - language-service + - localize + - platform-browser-dynamic + - platform-browser + - platform-server + - router + - service-worker + - upgrade + multiple: true + + - type: textarea + id: description + attributes: + label: Description + validations: + required: true + + - type: textarea + id: proposed-solution + attributes: + label: Proposed solution + validations: + required: true + + - type: textarea + id: alternatives-considered + attributes: + label: Alternatives considered + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/3-docs-bug.md b/.github/ISSUE_TEMPLATE/3-docs-bug.md deleted file mode 100644 index caa23d5fbc..0000000000 --- a/.github/ISSUE_TEMPLATE/3-docs-bug.md +++ /dev/null @@ -1,48 +0,0 @@ ---- -name: "Docs or angular.io Bug Report" -about: Report an issue in Angular's documentation or angular.io application ---- - - -# Docs or angular.io Bug Report - -### Description - - A clear and concise description of the problem... - - -## Minimal Reproduction - -### What's the affected URL?** - https://angular.io/... - -### Reproduction Steps** - - -### Expected vs Actual Behavior** - - -## Screenshot - - - -## Exception or Error -

-
-
-
- -## Your Environment - -### Browser info - - -### Anything else relevant? - diff --git a/.github/ISSUE_TEMPLATE/3-docs-bug.yaml b/.github/ISSUE_TEMPLATE/3-docs-bug.yaml new file mode 100644 index 0000000000..a6a2eb840b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/3-docs-bug.yaml @@ -0,0 +1,42 @@ +name: 'Docs or angular.io Bug Report' +description: Report an issue in Angular's documentation or angular.io application + +body: + - type: textarea + id: description + attributes: + label: Description + validations: + required: true + + - type: input + id: affected-url + attributes: + label: What is the affected URL? + + - type: textarea + id: reproduction-steps + attributes: + label: Please provide the steps to reproduce the issue + + - type: textarea + id: expected-vs-actual-behavior + attributes: + label: Please provide the expected behavior vs the actual behavior you encountered + + - type: textarea + id: screenshot + attributes: + label: Please provide a screenshot if possible + + - type: textarea + id: exception-or-error + attributes: + label: Please provide the exception or error you saw + render: true + + - type: textarea + id: browser-info + attributes: + label: Is this a browser specific issue? If so, please specify the device, browser, and version. + render: true