Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
47 changes: 47 additions & 0 deletions .github/ISSUE_TEMPLATE/overture.yaml
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.
Comment thread
lowlydba marked this conversation as resolved.
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
11 changes: 4 additions & 7 deletions .github/workflows/check-python-code.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
name: Check Python package code

on:
pull_request:
paths:
- 'packages/**'
- 'pyproject.toml'
- 'uv.lock'
- 'Makefile'
- '.github/workflows/check-python-code.yaml'
# No path filter on pull_request: "All Python checks pass" is a required
# status check (see schema.yml in omf-github-terraform), and GitHub never
# satisfies a required check that a path filter prevents from running.
pull_request: {}
push:
branches: [main, dev]
paths:
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/check-python-package-versions.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
name: Check Python package version numbers

on:
pull_request:
paths:
- '**/pyproject.toml'
# No path filter: "check / Check Python package versions" is a required
# status check (see schema.yml in omf-github-terraform), and GitHub never
# satisfies a required check that a path filter prevents from running.
pull_request: {}
permissions:
contents: read

Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/sync-issue-type-and-scope.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Sync issue Type and Scope
Comment thread
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 }}
9 changes: 4 additions & 5 deletions .github/workflows/test-schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,10 @@ on:
- 'schema/**'
- 'examples/**'
- 'counterexamples/**'
pull_request:
paths:
- 'schema/**'
- 'examples/**'
- 'counterexamples/**'
# No path filter on pull_request: "Build" is a required status check (see
# schema.yml in omf-github-terraform), and GitHub never satisfies a
# required check that a path filter prevents from running.
pull_request: {}

permissions:
contents: read
Expand Down
Loading