deps: bump openai from 4.104.0 to 6.45.0 #65
Workflow file for this run
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
| name: Self Knowledge Diff Check | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| permissions: | |
| contents: write # needed for auto-patch branch creation | |
| pull-requests: write # needed to post comments and open patch PRs | |
| jobs: | |
| knowledge-diff: | |
| name: Check for Rationale Drift | |
| if: github.actor != 'dependabot[bot]' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Run Knowledge Diff | |
| uses: ./ # dogfood: run the action from this repo itself | |
| with: | |
| github-token: ${{ github.token }} | |
| gemini-api-key: ${{ secrets.GEMINI_API_KEY }} | |
| llm-provider: gemini | |
| doc-files: "README.md,ARCHITECTURE.md,CLAUDE.md,docs/**/*.md" | |
| code-extensions: "ts,js" | |
| sensitivity: medium | |
| auto-patch: "true" | |
| comment-mode: update |