This repository was archived by the owner on Apr 5, 2026. It is now read-only.
[Bug]: 漫画搜索不出 已收藏的漫画看不了 #400
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: Check Issue | |
| on: | |
| issues: | |
| types: [opened] | |
| permissions: | |
| contents: read | |
| issues: write | |
| jobs: | |
| check: | |
| name: Check Issue | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| id: checkout | |
| uses: actions/checkout@v4 | |
| - name: Check Issue | |
| id: check | |
| uses: wgh136/gpt_issue_checker@v1.0.2 | |
| with: | |
| api-url: ${{ secrets.API_URL }} | |
| api-key: ${{ secrets.API_KEY }} | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| prompt: "You are a repository issue checker. The project is a comic app that supports view local or network comics using config files. To view a comic source, user must add a config file. User should not report any issue related to config file to the project repository because there is another repository for managing config files. You are given an issue content and you need to decide whether to close the issue. If you decide to close the issue, you should also provide a comment explaining why you are closing the issue. If you decide not to close the issue, you should provide a comment which is a summary of the issue. You should response with a JSON object with the following keys: should_close, should_comment, comment." | |
| model: "gpt-4o" |