2
0
mirror of https://github.com/tenrok/axios.git synced 2026-05-30 15:24:11 +03:00
Files
axios/.github/workflows/close-issues.yml
T
Xianming Zhong a9010e4525 Add GitHub actions to close invalid issues (#3022)
* add close actions

* fix with checkout

* update issue templates

* add reminder

* update close message
2020-06-17 18:54:09 +02:00

18 lines
529 B
YAML

name: 'Close Invalid Issues'
on:
issues:
types: [opened]
jobs:
auto_close_issues:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Automatically close issues that don't follow the issue template
uses: lucasbento/auto-close-issues@v1.0.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
issue-close-message: "Closed by the issue bot. Make sure you have followed the issue template will all required sections/titles. Thanks."