mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 23:34:00 -05:00
Merge branch 'claude/phase-q-merge-automation-01XR8eqhPVkKziNLaXXYp8G2' into copilot/sub-pr-78
This commit is contained in:
2
.github/workflows/infra-ci-bucketed.yml
vendored
2
.github/workflows/infra-ci-bucketed.yml
vendored
@@ -32,7 +32,7 @@ jobs:
|
|||||||
pip install yamllint
|
pip install yamllint
|
||||||
|
|
||||||
# Validate all YAML files
|
# Validate all YAML files
|
||||||
find .github -name "*.yml" -o -name "*.yaml" | xargs yamllint -d relaxed || true
|
find .github -name "*.yml" -o -name "*.yaml" | xargs yamllint -d relaxed
|
||||||
|
|
||||||
- name: Validate TOML files
|
- name: Validate TOML files
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
@@ -7,10 +7,9 @@ Part of Phase Q - Merge Queue & Automation Strategy.
|
|||||||
Related docs: OPERATOR_PR_EVENT_HANDLERS.md, MERGE_QUEUE_PLAN.md
|
Related docs: OPERATOR_PR_EVENT_HANDLERS.md, MERGE_QUEUE_PLAN.md
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from typing import Dict, Any, Optional
|
from typing import Dict, Any
|
||||||
from sqlalchemy.ext.asyncio import AsyncSession
|
from sqlalchemy.ext.asyncio import AsyncSession
|
||||||
from sqlalchemy import select, insert, update
|
# from sqlalchemy import select, insert, update # Removed unused imports
|
||||||
from datetime import datetime
|
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
@@ -199,7 +198,6 @@ async def handle_pr_review_comment(payload: Dict[str, Any], db: AsyncSession):
|
|||||||
|
|
||||||
action = payload["action"]
|
action = payload["action"]
|
||||||
pr_number = payload["pull_request"]["number"]
|
pr_number = payload["pull_request"]["number"]
|
||||||
comment = payload["comment"]
|
|
||||||
|
|
||||||
logger.info(f"PR #{pr_number} review comment {action}")
|
logger.info(f"PR #{pr_number} review comment {action}")
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user