9343fd413b
* Repository maintenance: add GitHub Repo Gardening action The Repo Gardening action is a tool that one can use to automate some of the tasks that you can perform to monitor activity in your repository. https://github.com/marketplace/actions/repository-gardening It includes different tasks, that can be enabled based on your needs. This commit gets us started with the action by enabling a few tasks. - This action relies on a few secrets that have already been added to this repo. - Of note, `gatherSupportReferences` and `replyToCustomersReminder` aren't too useful right now, but will become useful once the plugin is released on WordPress.com and once we start receiving feedback from WordPress.com site owners. - The `flagOss` task will point to #fediverse for now. This can be updated later on. - I've added mapping for our 2 block directories, but that mapping can be extended for more automatic labeling later on. * Add issue templates
34 lines
1 KiB
YAML
34 lines
1 KiB
YAML
name: Feature Request
|
|
description: Suggest an idea for the ActivityPub plugin!
|
|
title: "Feature Request:"
|
|
labels: ["[Type] Feature Request"]
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Please, be as descriptive as possible. Issues lacking detail, or for any other reason than to request a feature, may be closed without action.
|
|
|
|
- type: textarea
|
|
id: what
|
|
attributes:
|
|
label: What
|
|
description: Add a concise description of the feature being requested.
|
|
placeholder: eg. I would like a new dropdown at <xyz>...
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: why
|
|
attributes:
|
|
label: Why
|
|
description: Add a description of the problem this feature solves.
|
|
placeholder: |
|
|
eg. This will solve my accessibility needs.
|
|
validations:
|
|
required: true
|
|
|
|
- type: textarea
|
|
id: how
|
|
attributes:
|
|
label: How
|
|
description: If applicable, add screenshots, mockup, animations and/or videos to help illustrate how the feature could be done.
|