Fix python SyntaxWarnings on non-raw regex strings #1
Workflow file for this run
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
name: Issue moderator | |
on: | |
issues: | |
types: [opened] | |
pull_request: | |
types: [opened, edited] | |
jobs: | |
autoclose: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check issue | |
uses: tachiyomiorg/issue-moderator-action@v2 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
auto-close-rules: | | |
[ | |
{ | |
"type": "title", | |
"regex": ".*Short description.*", | |
"message": "You did not fill out the description in the title" | |
} | |
] | |
auto-close-ignore-label: do-not-autoclose | |
- name: Check PR | |
uses: sumally/github-check-tasklist-action@v1 |