<!-- .github/pull_request_template.md --> ## Description <!-- Provide a clear description of the changes in this PR --> ## DCO Affirmation I affirm that all code in every commit of this pull request conforms to the terms of the Topoteretes Developer Certificate of Origin <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Chores** - Enhanced deployment and build processes to improve system reliability and simplify dependency management. - **New Features** - Added a new dependency (`uv>=0.6.3`) to support enhanced functionality. - Updated extra dependencies for `codegraph` to include the `transformers` library. - Improved logging on server startup for clearer operational feedback. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
62 lines
No EOL
1.4 KiB
YAML
62 lines
No EOL
1.4 KiB
YAML
name: Update Poetry Dependencies
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 3 * * 0' # Runs at 3 AM every Sunday
|
|
push:
|
|
paths:
|
|
- 'poetry.lock'
|
|
- 'pyproject.toml'
|
|
branches:
|
|
- main
|
|
- dev
|
|
pull_request:
|
|
paths:
|
|
- 'poetry.lock'
|
|
- 'pyproject.toml'
|
|
types: [opened, synchronize, reopened]
|
|
branches:
|
|
- main
|
|
- dev
|
|
workflow_dispatch:
|
|
inputs:
|
|
debug_enabled:
|
|
type: boolean
|
|
description: 'Run the update with debug logging'
|
|
required: false
|
|
default: false
|
|
|
|
jobs:
|
|
update-dependencies:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
|
|
steps:
|
|
- name: Check out
|
|
uses: actions/checkout@master
|
|
|
|
- name: Setup Python
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: '3.10'
|
|
|
|
- name: Install Poetry
|
|
run: |
|
|
curl -sSL https://install.python-poetry.org | python3 -
|
|
poetry config virtualenvs.create false
|
|
|
|
- name: Update dependencies
|
|
run: poetry update
|
|
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@v6
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
commit-message: "chore: Update Poetry dependencies"
|
|
title: "chore: Update Poetry dependencies"
|
|
body: "Automated Poetry dependency updates"
|
|
base: "dev"
|
|
branch: "chore/poetry-updates"
|
|
delete-branch: true |