How can I start to use skeleton, what is simplest way? #8
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 Assistant | |
| on: | |
| issues: | |
| types: [opened] | |
| jobs: | |
| analyze: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| issues: write | |
| contents: read | |
| steps: | |
| - uses: workflowkit/[email protected] | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| ai_type: "claude" | |
| claude_api_key: ${{ secrets.CLAUDE_API_KEY }} | |
| enable_comment: "true" | |
| enable_label: "true" |