Skip to content

Commit

Permalink
Adds issue templates Esri#75
Browse files Browse the repository at this point in the history
  • Loading branch information
hhkaos committed Sep 28, 2023
1 parent b9fe9da commit 0ea5b92
Show file tree
Hide file tree
Showing 3 changed files with 109 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Bug
description: Report bug in existing expressions here.
labels: ["bug"]
body:
- type: checkboxes
id: existing-issues
attributes:
label: Check existing issues
description: If someone has already opened an issue for what you are requesting, please add a 👍 reaction to the existing issue instead of creating a new one.
options:
- label: I have [checked for existing issues](https://github.com/Esri/arcade-expressions/issues) to avoid duplicates.
validations:
required: true
- type: input
id: expression-path
attributes:
label: Markdown file
description: Please, add the path to the markdown file that contains the bug.
validations:
required: true
- type: textarea
id: bug-description
attributes:
label: Description
description: Describe the bug
validations:
required: true
- type: textarea
id: solution
attributes:
label: Comments (optional)
description: Add anything else that can help use reproduce/solve the issue
validations:
required: false
15 changes: 15 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
contact_links:
- name: Arcade question within ArcGIS Online (Map Viewer)
url: https://community.esri.com/t5/forums/filteredbylabelpage/board-id/arcgis-online-questions/label-name/arcade
- name: Arcade question within ArcGIS Dashboards
url: https://community.esri.com/t5/arcgis-dashboards-questions/bd-p/arcgis-dashboards-questions
- name: Arcade question within ArcGIS Enterprise (Map Viewer)
url: https://community.esri.com/t5/arcgis-enterprise-portal-questions/bd-p/enterprise-portal
- name: Arcade question within the ArcGIS Maps SDK for JavaScript
url: https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/bd-p/arcgis-api-for-javascript-questions
- name: Arcade question within ArcGIS Pro SDK
url: https://community.esri.com/t5/arcgis-pro-sdk-questions/bd-p/arcgis-pro-sdk-questions
- name: Arcade question within Native Maps SDKs
url: https://community.esri.com/t5/arcgis-maps-sdks-for-native-apps/ct-p/arcgis-runtime-sdks
- name: Arcade question within other products
url: http://community.esri.com
60 changes: 60 additions & 0 deletions .github/ISSUE_TEMPLATE/new-expression.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: Expression request
description: Suggest idea for this project
labels: ["enhancement"]
body:
- type: checkboxes
id: existing-issues
attributes:
label: Check existing issues
description: If someone has already opened an issue for what you are requesting, please add a 👍 reaction to the existing issue instead of creating a new one.
options:
- label: I have [checked for existing issues](https://github.com/Esri/arcade-expressions/issues) to avoid duplicates.
validations:
required: true
- type: dropdown
id: execution-profile
validations:
required: true
attributes:
label: Execution profile
multiple: false
description: Environment controlling the expression's execution (more about [Arcade Profiles](https://developers.arcgis.com/arcade/profiles/))
options:
- Any
- Alias
- Calculation
- Constraint
- Dashboard data
- Form Calculation
- Labeling
- Popup
- Visualization
- I don't know
- type: textarea
id: expression-request
attributes:
label: Is your feature request related to a problem? Please describe.
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
validations:
required: false
- type: textarea
id: solution
attributes:
label: Describe the solution you'd like
description: A clear and concise description of what you want to happen.
validations:
required: false
- type: textarea
id: alternatives
attributes:
label: Describe alternatives you've considered
description: A clear and concise description of any alternative solutions or features you've considered.
validations:
required: false
- type: textarea
id: context
attributes:
label: Additional context
description: Add any other context, layers, webmaps, code, about the feature request here.
validations:
required: false

0 comments on commit 0ea5b92

Please sign in to comment.