Merge branch 'claude/phase-q-merge-automation-01XR8eqhPVkKziNLaXXYp8G2' into copilot/sub-pr-78

This commit is contained in:
Alexa Amundson
2025-11-17 23:40:32 -06:00
committed by GitHub
2 changed files with 3 additions and 5 deletions

View File

@@ -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: |

View File

@@ -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}")