ffplayout/.github/workflows/auto_close_issue.yml
Workflow config file is invalid. Please check your config file: yaml: line 12: found unknown escape character
2024-09-03 10:27:57 +02:00

13 lines
482 B
YAML

name: Autocloser
on: [issues]
jobs:
autoclose:
runs-on: ubuntu-latest
steps:
- name: Autoclose issues that did not follow issue template
uses: roots/issue-closer@v1.2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-close-message: "@${issue.user.login} this issue was automatically closed because it did not follow the issue template"
issue-pattern: ".*### Describe the bug([\s\S]*?)### To Reproduce.*|### Feature description.*"