github-actions[bot] opened a new pull request, #66540: URL: https://github.com/apache/airflow/pull/66540
The notify_uv_lock_conflicts.py script created an httpx.Client with `base_url=GRAPHQL_URL` and posted to a relative path of "". httpx normalises `base_url` to end with `/`, so the resolved URL became `https://api.github.com/graphql/` — which GitHub's GraphQL API rejects with 404, breaking the workflow's main run. Drop the `base_url=` and pass the full URL to `.post()` directly so the trailing slash never gets added. Failure observed in https://github.com/apache/airflow/actions/runs/25492428820/job/74803563077 (cherry picked from commit 6026c1e81c9991cc22bf4c4a62ef9cac48988980) Co-authored-by: Jarek Potiuk <[email protected]> -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
