Skip to content
This repository was archived by the owner on Oct 29, 2022. It is now read-only.

Commit 8f2b923

Browse files
committed
New templates & actions
1 parent 8430023 commit 8f2b923

File tree

9 files changed

+115
-52
lines changed

9 files changed

+115
-52
lines changed

.github/FUNDING.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@
22

33
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
44
patreon: jasonwynn10
5+
open_collective: # Replace with a single Open Collective username
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
58
custom: https://www.buymeacoffee.com/jasonwynn10

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,18 @@ assignees: ''
2121
* Plugin Version:
2222
* PocketMine-MP:
2323
* PHP:
24-
* Game version: PE/Win10 (delete as appropriate)
24+
* Using JIT: yes/no (delete as appropriate) <!-- look for the giant yellow warning in the log that says you're using JIT -->
25+
* Server OS:
26+
* Game version: Android/iOS/Win10/Xbox/PS4/Switch (delete as appropriate)
2527

2628
### Other Plugins
2729
<!--- use the `plugins` command and paste the output below -->
2830

29-
- If you remove all other plugins, does the issue still occur? Yes/No (delete as appropriate)
31+
- If you remove all other plugins, does the issue still occur?
3032
- If the issue is **not** reproducible without other plugins:
3133
- Have you asked for help in the community discord before creating an issue?
3234
- Can you provide sample, *minimal* reproducing code for the issue? If so, paste it in the bottom section.
3335

34-
### Console error, backtrace or other files
35-
<!--- Link a screenshot of the console error message here -->
36+
### Crashdump, backtrace or other files
37+
<!--- Submit crashdumps at https://crash.pmmp.io and paste a link -->
38+
<!--- Use gist or anything else to add other files and add links here -->

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Help & support on Discord
4+
url: https://discord.gg/qqcpp9q
5+
about: We don't accept support requests on the issue tracker. Please try asking on Discord instead.
6+
- name: Documentation
7+
url: https://github.com/jasonwynn10/MyPlot/wiki
8+
about: PocketMine-MP documentation

.github/ISSUE_TEMPLATE/crash.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ assignees: ''
99

1010
<!--- submit crashdump files to https://crash.pmmp.io -->
1111
<!--- or, copy the data between ===BEGIN CRASH DUMP=== and ===END CRASH DUMP and paste it on a site like https://pastebin.com -->
12-
Link to crashdump:
12+
<!--- DON'T JUST PASTE the crashdump into an issue -->
13+
Link to crashdump:
1314

1415
<!--- write additional information about the crash to help us find the problem -->
1516
### Additional comments (optional)

.github/ISSUE_TEMPLATE/help---support.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/security-vulnerability.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

.github/support.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/workflows/support.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: 'Manage support request issues'
2+
3+
on:
4+
issues:
5+
types: [labeled, unlabeled, reopened]
6+
7+
jobs:
8+
support:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: dessant/support-requests@v2
12+
with:
13+
github-token: ${{ github.token }}
14+
support-label: "Support request"
15+
issue-comment: >
16+
Thanks, but this issue tracker is not intended for support requests. Please read the guidelines on [submitting an issue](https://github.com/jasonwynn10/MyPlot/blob/master/CONTRIBUTING.md#creating-an-issue).
17+
18+
19+
[Docs](https://github.com/jasonwynn10/MyPlot/wiki) | [Discord](https://discord.gg/qqcpp9q)
20+
21+
close-issue: true
22+
lock-issue: false

.gitignore

Lines changed: 73 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,73 @@
1-
.gitignore
2-
.idea/
3-
.github/*
4-
.poggit.yml
5-
icon.png
1+
### JetBrains template
2+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
3+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
4+
5+
# User-specific stuff
6+
.idea/**/workspace.xml
7+
.idea/**/tasks.xml
8+
.idea/**/usage.statistics.xml
9+
.idea/**/dictionaries
10+
.idea/**/shelf
11+
12+
# Generated files
13+
.idea/**/contentModel.xml
14+
15+
# Sensitive or high-churn files
16+
.idea/**/dataSources/
17+
.idea/**/dataSources.ids
18+
.idea/**/dataSources.local.xml
19+
.idea/**/sqlDataSources.xml
20+
.idea/**/dynamic.xml
21+
.idea/**/uiDesigner.xml
22+
.idea/**/dbnavigator.xml
23+
24+
# Gradle
25+
.idea/**/gradle.xml
26+
.idea/**/libraries
27+
28+
# Gradle and Maven with auto-import
29+
# When using Gradle or Maven with auto-import, you should exclude module files,
30+
# since they will be recreated, and may cause churn. Uncomment if using
31+
# auto-import.
32+
# .idea/artifacts
33+
# .idea/compiler.xml
34+
# .idea/jarRepositories.xml
35+
# .idea/modules.xml
36+
# .idea/*.iml
37+
# .idea/modules
38+
# *.iml
39+
# *.ipr
40+
41+
# CMake
42+
cmake-build-*/
43+
44+
# Mongo Explorer plugin
45+
.idea/**/mongoSettings.xml
46+
47+
# File-based project format
48+
*.iws
49+
50+
# IntelliJ
51+
out/
52+
53+
# mpeltonen/sbt-idea plugin
54+
.idea_modules/
55+
56+
# JIRA plugin
57+
atlassian-ide-plugin.xml
58+
59+
# Cursive Clojure plugin
60+
.idea/replstate.xml
61+
62+
# Crashlytics plugin (for Android Studio and IntelliJ)
63+
com_crashlytics_export_strings.xml
64+
crashlytics.properties
65+
crashlytics-build.properties
66+
fabric.properties
67+
68+
# Editor-based Rest Client
69+
.idea/httpRequests
70+
71+
# Android studio 3.1+ serialized cache file
72+
.idea/caches/build_file_checksums.ser
73+

0 commit comments

Comments
 (0)