mirror of
https://github.com/keiyoushi/extensions-source.git
synced 2024-11-22 10:22:47 +01:00
8920156df7
Issue Moderator: don't Keiyoushi-bot for now
72 lines
3.1 KiB
YAML
72 lines
3.1 KiB
YAML
name: Issue moderator
|
|
|
|
on:
|
|
issues:
|
|
types: [ opened, edited, reopened ]
|
|
issue_comment:
|
|
types: [ created ]
|
|
|
|
jobs:
|
|
autoclose:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Moderate issues
|
|
uses: keiyoushi/issue-moderator-action@a017be83547db6e107431ce7575f53c1dfa3296a
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
duplicate-label: Duplicate
|
|
|
|
blurbs: |
|
|
[
|
|
{
|
|
"keywords": ["cf", "cloudflare"],
|
|
"message": "Refer to the **Solving Cloudflare issues** section at https://keiyoushi.github.io/docs/guides/troubleshooting#cloudflare. If it doesn't work, migrate to other sources or wait until they lower their protection."
|
|
},
|
|
{
|
|
"keywords": ["uninstall"],
|
|
"message": "Uninstall the extension before updating. If that does not work, uninstall it from your device's settings by navigating to your device's Settings -> Apps and uninstall it from there by looking for `Tachiyomi: <extension name>`.\n\nThis is usually caused your previous extension having a different signature from the updated extension, making Android refuse to update it."
|
|
}
|
|
]
|
|
|
|
duplicate-check-enabled: true
|
|
duplicate-check-labels: |
|
|
["Source request", "Domain changed"]
|
|
|
|
existing-check-enabled: true
|
|
existing-check-labels: |
|
|
["Source request", "Domain changed"]
|
|
existing-check-repo-url: https://raw.githubusercontent.com/keiyoushi/extensions/repo/index.min.json
|
|
|
|
auto-close-rules: |
|
|
[
|
|
{
|
|
"type": "both",
|
|
"regex": ".*(?:fail(?:ed|ure|s)?|can\\s*(?:no|')?t|(?:not|un).*able|(?<!n[o']?t )blocked by|error) (?:to )?(?:get past|by ?pass|penetrate)?.*cl[oa]ud ?fl?[ai]re.*",
|
|
"ignoreCase": true,
|
|
"labels": ["Cloudflare protected"],
|
|
"message": "Refer to the **Solving Cloudflare issues** section at https://keiyoushi.github.io/docs/guides/troubleshooting#cloudflare. If it doesn't work, migrate to other sources or wait until they lower their protection."
|
|
},
|
|
{
|
|
"type": "both",
|
|
"regex": "remanga\\.org",
|
|
"ignoreCase": true,
|
|
"labels": ["invalid"],
|
|
"message": "ReManga (Russian) will not be added back as it has been removed [due to legal reasons](https://github.com/github/dmca)."
|
|
},
|
|
{
|
|
"type": "both",
|
|
"regex": "(kumanga\\.com)",
|
|
"ignoreCase": true,
|
|
"labels": ["invalid"],
|
|
"message": "{match} will not be added back as it is too difficult to maintain."
|
|
},
|
|
{
|
|
"type": "both",
|
|
"regex": "(centralnovel\\.com)",
|
|
"ignoreCase": true,
|
|
"labels": ["invalid"],
|
|
"message": "Novels aren't supported"
|
|
}
|
|
]
|
|
auto-close-ignore-label: do-not-autoclose
|