fix: accept cwd alias in SessionStart hook + fix doctor false-positive warnings #156
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: AI Pull Request Describer | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize, labeled, reopened] | |
| jobs: | |
| describe: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: AI Pull Request Describer | |
| uses: fajarhide/ai-pr-describer@v1.1.4 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| github-api-base-url: 'https://api.github.com' | |
| openai-api-key: ${{ secrets.OPENAI_API_KEY }} | |
| openai-model: '${{ secrets.OPENAI_MODEL }}' | |
| openai-base-url: '${{ secrets.OPENAI_BASE_URL }}' | |
| max-tokens: 2000 | |
| max-context-tokens: 32000 | |
| auto-update-enabled: true |