1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 19:55:48 +00:00
Slimefun4/.github/workflows/closed-issues-reason.yml

58 lines
4.0 KiB
YAML
Raw Normal View History

2020-03-20 13:44:40 +00:00
name: Respond to closed Issue
2020-07-30 11:30:20 +00:00
on:
issues:
2019-11-18 22:47:19 +00:00
types: [closed]
2019-11-18 22:46:16 +00:00
jobs:
comment:
runs-on: ubuntu-latest
2020-03-20 14:04:37 +00:00
if: contains(github.event.issue.labels.*.name, 'Bug Report')
2019-11-18 22:46:16 +00:00
steps:
2020-03-21 14:35:38 +00:00
- name: Query recent commits
uses: TheBusyBiscuit/recently-closed-issues@1.1.0
id: resolved
with:
token: ${{ secrets.ACCESS_TOKEN }}
max_commits: 20
2020-03-21 14:35:38 +00:00
- name: Add label
2020-04-05 15:35:50 +00:00
if: contains(steps.resolved.outputs.issues, github.event.issue.number)
2020-03-21 14:35:38 +00:00
uses: maxkomarychev/octions/octions/issues/add-labels@master
with:
token: ${{ secrets.ACCESS_TOKEN }}
issue_number: ${{ github.event.issue.number }}
labels: 'Resolved'
2020-03-20 13:44:40 +00:00
- uses: maxkomarychev/octions/octions/issues/create-comment@master
2020-04-15 15:52:15 +00:00
id: comment
2020-04-05 15:35:50 +00:00
if: contains(steps.resolved.outputs.issues, github.event.issue.number) == false
2019-11-18 22:46:16 +00:00
with:
2020-03-20 13:44:40 +00:00
token: ${{ secrets.ACCESS_TOKEN }}
issue_number: ${{ github.event.issue.number }}
2019-11-18 23:05:56 +00:00
body: |-
2020-07-30 11:38:02 +00:00
Your issue has been closed by an admin, it may fall under one or more of the following categories.
2020-03-01 09:36:31 +00:00
**Please wait for an admin to tick off the points that apply.**
2020-07-30 11:30:20 +00:00
<hr>
2020-07-30 11:34:24 +00:00
2020-04-15 15:52:15 +00:00
* [ ] You did not follow our template. Please follow the Issue template to help us identify your issue more effectively.
* [ ] You did not provide any information about your versions (We absolutely need the exact version numbers that are installed on your Server, \"latest\" is not helpful)
2020-07-30 11:38:02 +00:00
* [ ] You did not provide a proper description to the problem. Try to write at least 4-6 sentences and/or provide screenshots or videos on how to reproduce this.
2020-03-01 09:36:31 +00:00
* [ ] We were unable to reproduce issue, if you think your issue still persists then please comment down below and give a better description on how to reproduce it.
* [ ] Your issue was posted in a foreign language, we only accept english issues on here.
2020-07-30 11:38:02 +00:00
* [ ] Your issue is not a bug, it is intended to work this way.
* [ ] Your issue is not really a bug, it is a limitation or simply something we have no control over.
2020-04-15 15:52:15 +00:00
* [ ] Your issue is not a bug, please only use this issue tracker to report bugs. Any other kind of communication should happen on discord.
2020-07-30 11:38:02 +00:00
* [ ] Your issue has already been reported before, it is a duplicate. Check the other issues first before posting!
2020-04-15 15:52:15 +00:00
* [ ] You posted an error without using pastebin. Please always post errors via pastebin otherwise they become nearly unreadable.
2020-09-11 18:02:17 +00:00
* [ ] You seem to be reporting multiple bugs at once. Please make a separate issue for each bug you encountered, so we can properly handle them individually.
2019-12-22 09:08:01 +00:00
* [ ] Your issue has already been fixed in a later version of Slimefun or CS-CoreLib, you should update.
2020-04-15 15:52:15 +00:00
* [ ] You are using an outdated and unsupported version of Slimefun / CS-CoreLib, again, you should update.
* [ ] You are using an unofficially modified build of Slimefun. We only support official versions of Slimefun - for obvious reasons.
* [ ] You are using an unsupported version of Minecraft. We only provide support for the Minecraft versions Slimefun was developed for, older versions are not supported anymore.
2019-12-22 09:08:01 +00:00
* [ ] You are using a \"stable\" version of Slimefun (prefixed with \"RC - \"), your issue may have been fixed in a development build, so we only accept bug reports from those.
2020-03-01 09:36:31 +00:00
* [ ] You are on the wrong issue tracker. We would like to remind you that this Issue Tracker is **only for Slimefun**. To report bugs on any addons, head to the corresponding issue tracker of that addon.
2020-07-30 11:30:20 +00:00
<hr>
2020-07-30 11:34:24 +00:00
2020-07-30 11:38:02 +00:00
Please respond below, if you have any further questions.
Do **not** open a new Issue unless explicitly told otherwise, comment below or edit your post instead.<br>
2020-09-06 15:19:17 +00:00
Make sure to check out our article on [How to report bugs](https://github.com/Slimefun/Slimefun4/wiki/How-to-report-bugs) for even more information.