Conversation
Feature tasking mvp
Project Role Assignment Verification
ignore creating the extension via migration
## DevBoard - https://dev.azure.com/TDEI-UW/TDEI/_workitems/edit/3739 ## Changes Added a new GitHub Actions workflow (`.github/workflows/tag.yml`) that automatically updates environment tags when pull requests are merged. **Workflow Details:** - **Trigger:** Pull request closure events on `develop`, `staging`, and `production` branches (only executes when PR is merged) - **Tag Mapping:** Maps base branch to environment tag: - `develop` → `dev` - `staging` → `stage` - `production` → `prod` - **Execution:** Force-updates the git tag locally and pushes it to the remote repository with the `--force` flag - **Permissions:** Requires `contents: write` to push tags The workflow enables automated environment tagging aligned with branch-based deployments, ensuring consistent tag versions across environments.
Tagging workflow included
…set, upload_aoi, and delete_aoi methods in FakeProjectRepo
Refactor audit event handling and update event types for tasks and projects
Task data fetching URL
Feature task geojson
- Added route to submit changeset for a task - Removed the changeset ID from Submit request.
Linting issue fixed
Minor fix
added Route to submit Changesets for task
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
MashB
approved these changes
Jun 29, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This pull request introduces several important improvements to the CI/CD pipeline, database migrations, FastAPI routing, and the codebase for tasking and audit features. The main changes include expanding CI coverage to additional branches, adding an automated tagging workflow, enhancing database migrations for better dependency management and compatibility, integrating new routers for the tasking and audit APIs, and improving error handling for API routes.
CI/CD Pipeline Updates:
.github/workflows/ci.yml) now runs on bothmainanddevelopbranches, ensuring that changes to both branches are tested automatically..github/workflows/tag.yml) automatically updates environment tags (dev,stage,prod) when pull requests are merged intodevelop,staging, orproductionbranches. This helps automate deployment tagging.Database Migration Improvements:
alembic_task/versions/c5121cbba124_initial_task_schema.py) was added, including checks for the required PostGIS extension and creation ofworkspaces-related tables only if they do not already exist.add6266277c7_migration now depends on the initial migration, ensuring migrations are applied in the correct order.alembic_osm/versions/9221408912dd_add_user_role_table.py), a stubuserstable is created if missing (for test/dev environments), and the ENUM type for roles is now explicitly Postgres-native for compatibility. [1] [2]API and Routing Enhancements:
/api/v1. [1] [2]/api/v1/...paths, improving error messaging for incorrect API calls.Tasking and Audit Feature Development:
Developer Experience:
.vscode/extensions.json)These changes collectively improve the robustness, maintainability, and developer experience of the project.