2020-11-28 16:43:42 +03:00
|
|
|
name: "Intercept bad issue/PRs"
|
|
|
|
|
2021-03-04 16:40:35 +03:00
|
|
|
on:
|
|
|
|
issues:
|
|
|
|
types: [opened]
|
|
|
|
pull_request:
|
|
|
|
types: [opened]
|
2020-11-28 16:43:42 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
autoclose:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2020-11-30 16:56:15 +03:00
|
|
|
- name: Auto close issues/pr that did not follow template
|
2020-11-28 16:43:42 +03:00
|
|
|
uses: roots/issue-closer@v1.1
|
|
|
|
with:
|
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
2021-03-04 16:40:35 +03:00
|
|
|
issue-pattern: "(\\[x\\]|\\[X\\]) I have read"
|
2020-11-30 16:56:15 +03:00
|
|
|
issue-close-message: ":wave: Hi @${issue.user.login},\n\nThis issue is being automatically closed because it does not follow the issue template."
|
2021-03-04 16:40:35 +03:00
|
|
|
pr-pattern: "(\\[x\\]|\\[X\\]) (Bug fix|New feature|Breaking change|Documentation update)|@dependabot"
|
2020-11-30 16:56:15 +03:00
|
|
|
pr-close-message: ":wave: Hi @${pull_request.user.login},\n\nThis PR is being automatically closed because it does not follow the PR template."
|