-
Notifications
You must be signed in to change notification settings - Fork 21
[CHORE] Add Overture issue template, skillset selector, and field sync workflow #652
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Eric Godwin (ericgodwin)
merged 5 commits into
main
from
ericgodwin-add-overture-issue-template
Aug 11, 2026
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
c858a87
Add Overture issue template and field sync workflow
ericgodwin 5b459e2
Merge branch 'main' into ericgodwin-add-overture-issue-template
lowlydba 16e304f
Make the Skillset dropdown optional
ericgodwin 07ac4ed
Merge branch 'main' into ericgodwin-add-overture-issue-template
lowlydba e0473a5
fix: remove pull_request path filters from required-check workflows
lowlydba File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| blank_issues_enabled: false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,47 @@ | ||
| name: Overture | ||
| description: General issue for work tracked in the Overture project. | ||
| projects: ["OvertureMaps/84"] | ||
| body: | ||
| - type: dropdown | ||
| id: type | ||
| attributes: | ||
| label: Type | ||
| description: What kind of work is this? Used to populate the organization-level `Type` field during triage. | ||
| options: | ||
| - Task | ||
| - Bug | ||
| - Agenda | ||
| validations: | ||
| required: true | ||
| - type: dropdown | ||
| id: scope | ||
| attributes: | ||
| label: Scope | ||
| description: Primary theme or platform impacted. Used to populate the organization-level `Scope` field during triage. | ||
| options: | ||
| - Addresses | ||
| - Base | ||
| - Buildings | ||
| - Divisions | ||
| - Places | ||
| - Transportation | ||
| - Multi-theme or Platform | ||
| validations: | ||
| required: true | ||
| - type: dropdown | ||
| id: skillset | ||
| attributes: | ||
| label: Skillset | ||
| description: Primary skill needed to complete this task. Used to populate the organization-level `Skillset` field during triage. | ||
| options: | ||
| - data analysis | ||
| - data science | ||
| - dev ops | ||
| - engineering | ||
| - type: textarea | ||
| id: description | ||
| attributes: | ||
| label: Description | ||
| placeholder: Describe what this issue is trying to accomplish (what), context (why), constraints, acceptance criteria, design details (how), and testing | ||
| validations: | ||
| required: true | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| name: Sync issue Type and Scope | ||
|
lowlydba marked this conversation as resolved.
|
||
|
|
||
| on: | ||
| issues: | ||
| types: [opened] | ||
|
|
||
| permissions: {} | ||
|
|
||
| # One sync run per issue at a time; drop duplicate triggers. | ||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.event.issue.number }} | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| sync-fields: | ||
| name: Sync fields | ||
| runs-on: ubuntu-slim | ||
| permissions: | ||
| issues: write # Read the issue body and set the org-level Type, Scope, and Skillset fields. | ||
| steps: | ||
| - name: Sync Type and Scope from form answers | ||
| uses: OvertureMaps/workflows/.github/actions/sync-issue-fields@main # zizmor: ignore[unpinned-uses] intentionally track main | ||
| with: | ||
| github-token: ${{ secrets.GITHUB_TOKEN }} | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.