Skip to content

Commit fca41a6

Browse files
feat: enhance moderation experience (#449)
1 parent a5d491d commit fca41a6

File tree

3 files changed

+31
-17
lines changed

3 files changed

+31
-17
lines changed

.github/ISSUE_TEMPLATE/new-framework-support.md

Lines changed: 0 additions & 17 deletions
This file was deleted.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: New framework support
2+
description: Suggest a framework that we should add support for
3+
title: Framework support for [FRAMEWORK_NAME]
4+
body:
5+
- type: textarea
6+
attributes:
7+
label: Describe the solution you'd like
8+
validations:
9+
required: true
10+
- type: input
11+
attributes:
12+
label: Provide a link to a GitHub repo containing an example of the framework
13+
validations:
14+
required: true
15+
- type: textarea
16+
attributes:
17+
label: Additional context
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
on:
2+
issues:
3+
types: [opened]
4+
jobs:
5+
closeEmptyIssues:
6+
if: "${{ github.event.issue.body == '' }}"
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: close empty issues
10+
# v1.0.0
11+
uses: kerhub/saved-replies@dd3633c3608fcc768978988b012871d66f98f7d6
12+
with:
13+
token: ${{ secrets.GITHUB_TOKEN }}
14+
state: 'closed'

0 commit comments

Comments
 (0)