The “Add tag” input does not work correctly when the novel has at least 1 tag. #2615
This file contains 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
# Cloned from tachiyomi | |
name: Issue moderator | |
on: | |
issues: | |
types: [opened, edited, reopened] | |
issue_comment: | |
types: [created] | |
jobs: | |
moderate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Moderate issues | |
uses: tachiyomiorg/issue-moderator-action@v1 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
auto-close-rules: | | |
[ | |
{ | |
"type": "body", | |
"regex": ".*DELETE THIS SECTION IF YOU HAVE READ AND ACKNOWLEDGED IT.*", | |
"message": "The acknowledgment section was not removed." | |
}, | |
{ | |
"type": "body", | |
"regex": ".*\\* (LNReader version|Android version|Device): \\?.*", | |
"message": "Requested information in the template was not filled out." | |
} | |
] |