put_paramset schlägt fehl mit "Parameter not found" für LINK #162
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: Issue Analyzer | |
| # yamllint disable-line rule:truthy | |
| on: | |
| issues: | |
| types: [opened, edited] | |
| workflow_dispatch: | |
| inputs: | |
| issue_number: | |
| description: 'Issue number to analyze' | |
| required: true | |
| type: number | |
| permissions: | |
| issues: write | |
| contents: read | |
| jobs: | |
| analyze-issue: | |
| if: github.repository_owner == 'SukramJ' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Setup Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.13' | |
| - name: Install dependencies | |
| run: | | |
| pip install anthropic PyGithub requests | |
| - name: Analyze issue and post comment | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} | |
| ISSUE_NUMBER: ${{ github.event.issue.number || github.event.inputs.issue_number }} | |
| ISSUE_TITLE: ${{ github.event.issue.title || '' }} | |
| ISSUE_BODY: ${{ github.event.issue.body || '' }} | |
| REPO_NAME: ${{ github.repository }} | |
| run: | | |
| python .github/scripts/analyze_issue.py |