mirror of
https://github.com/davatorium/rofi.git
synced 2025-02-10 15:44:41 -05:00
Add Action to auto-close incomplete reports (#1212)
- update feature request to work with the action - add workflows action config file
This commit is contained in:
parent
7c9a01ffc7
commit
abad916ce8
2 changed files with 59 additions and 16 deletions
58
.github/ISSUE_TEMPLATE/feature_request.md
vendored
58
.github/ISSUE_TEMPLATE/feature_request.md
vendored
|
@ -6,26 +6,52 @@ title: "[REQUEST] "
|
||||||
assignees: ''
|
assignees: ''
|
||||||
---
|
---
|
||||||
|
|
||||||
**Before creating a feature request:**
|
:exclamation:
|
||||||
- First check the *next* branch, to see if the feature has already been
|
First read the [guidelines](https://github.com/DaveDavenport/rofi/blob/next/.github/CONTRIBUTING.md)!
|
||||||
implemented.
|
This is not optional for any report/question. People must be able to understand the full context of the report when reading it, at any time.
|
||||||
- Check existing reports, see if it is already requested.
|
If you feel like you “just have a simple question”, please consider you’re wrong and still fill the full report.
|
||||||
|
Any report missing these informations will be labeled as “Incomplete Report - Please follow the guidelines” and may not be answered in a timely fashion.
|
||||||
|
:exclamation:
|
||||||
|
|
||||||
|
## Before creating a feature request
|
||||||
|
- [ ] I checked the *next* branch to see if the feature has already been
|
||||||
|
implemented
|
||||||
|
- [ ] I searched existing reports to see if it is already requested.
|
||||||
|
|
||||||
|
|
||||||
**Describe the feature**
|
## What is the user problem or growth opportunity you want to see solved?
|
||||||
- A clear description of the feature you want added.
|
|
||||||
- If the feature involves replacement of current functionality, how the new
|
...
|
||||||
functionality is better?
|
|
||||||
- If the feature is implemented in another application, include:
|
|
||||||
- Screenshots or screencasts of it
|
|
||||||
- Links to its implementation
|
|
||||||
- If possible try to explain how you would expect to use feature:
|
|
||||||
For example, should it be a configuration option or a hot-key.
|
|
||||||
|
|
||||||
|
|
||||||
**When reporting a feature request include the following information:**
|
## How do you know that this problem exists today? Why is this important?
|
||||||
- Rofi version:
|
|
||||||
- `rofi -v`
|
...
|
||||||
|
|
||||||
|
|
||||||
|
## Who will benefit from it?
|
||||||
|
|
||||||
|
...
|
||||||
|
|
||||||
|
|
||||||
|
## Version
|
||||||
|
|
||||||
|
Output of `rofi -v`
|
||||||
|
|
||||||
|
|
||||||
|
## Configuration
|
||||||
|
|
||||||
|
Output of `rofi -help` (in a [gist](https://gist.github.com/), please paste the *full* output)
|
||||||
|
|
||||||
|
|
||||||
|
**Additional details:**
|
||||||
|
- Include a link to your private config
|
||||||
|
- Include screenshots/casts of your issue
|
||||||
|
|
||||||
|
|
||||||
|
**Please do not submit reports related to wayland, see
|
||||||
|
[here](https://github.com/DaveDavenport/rofi/wiki/Wayland) for more
|
||||||
|
information.**
|
||||||
|
|
||||||
|
|
||||||
**Requesting a feature is no guarantee it will be added.**
|
**Requesting a feature is no guarantee it will be added.**
|
||||||
|
|
17
.github/workflows/main.yml
vendored
Normal file
17
.github/workflows/main.yml
vendored
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
on:
|
||||||
|
issues:
|
||||||
|
types: [opened, edited]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
auto_close_issues:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v1
|
||||||
|
|
||||||
|
- name: Automatically close issues that don't follow the issue template
|
||||||
|
uses: ergo720/auto-close-issues@v1.0.4
|
||||||
|
with:
|
||||||
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
issue-close-message: "@${issue.user.login}: hello! :wave:\n\nThis issue is being automatically closed because it does not follow the issue template." # optional property
|
||||||
|
closed-issues-label: "Incomplete Report - Please follow the guidelines" # optional property
|
Loading…
Add table
Reference in a new issue