Skip to content

Commit

Permalink
fix issue opened ci
Browse files Browse the repository at this point in the history
  • Loading branch information
josxha committed Feb 19, 2024
1 parent fdbc5a5 commit 0dca9c4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 15 deletions.
15 changes: 5 additions & 10 deletions .github/ISSUE_TEMPLATE/1-bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ body:
label: Package
description: For what is your bug report?
options:
- "other"
- "flutter_map_cache"
- "flutter_map_compass"
- "flutter_map_mbtiles"
- "flutter_map_pmtiles"
- "vector_map_tiles_mbtiles"
- "vector_map_tiles_pmtiles"
- "other"
validations:
required: true
- type: textarea
Expand Down Expand Up @@ -61,16 +61,11 @@ body:
```
validations:
required: true
- type: checkboxes
- type: dropdown
id: platform
attributes:
label: Platforms
description: On what platforms does the bug happen?
options:
- label: All
- label: Android
- label: iOS
- label: Web
- label: Windows
- label: MacOS
- label: Linux
options: [ "all", "android", "iOS", "web", "windows", "macOS", "linux" ]
validations:
required: true
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/2-feature.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ body:
label: Package
description: For what is your feature request?
options:
- "other"
- "flutter_map_cache"
- "flutter_map_compass"
- "flutter_map_mbtiles"
- "flutter_map_pmtiles"
- "vector_map_tiles_mbtiles"
- "vector_map_tiles_pmtiles"
- "other"
validations:
required: true
- type: textarea
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/issue_opened.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
id: issue-parser-bug
with:
template-path: .github/ISSUE_TEMPLATE/bug.yml
- name: Set labels based on scope field
- name: Set labels based on package field
uses: redhat-plumbers-in-action/advanced-issue-labeler@v3
with:
issue-form: ${{ steps.issue-parser.outputs.jsonString }}
section: scope
section: package
block-list: |
other
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -33,11 +33,11 @@ jobs:
id: issue-parser-feature
with:
template-path: .github/ISSUE_TEMPLATE/bug.yml
- name: Set labels based on scope field
- name: Set labels based on package field
uses: redhat-plumbers-in-action/advanced-issue-labeler@v3
with:
issue-form: ${{ steps.issue-parser.outputs.jsonString }}
section: scope
section: package
block-list: |
other
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 0dca9c4

Please sign in to comment.