Skip to content

Commit

Permalink
New templates & actions
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonw4331 committed Nov 11, 2021
1 parent 8430023 commit 8f2b923
Show file tree
Hide file tree
Showing 9 changed files with 115 additions and 52 deletions.
3 changes: 3 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,7 @@

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: jasonwynn10
open_collective: # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
custom: https://www.buymeacoffee.com/jasonwynn10
11 changes: 7 additions & 4 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,18 @@ assignees: ''
* Plugin Version:
* PocketMine-MP:
* PHP:
* Game version: PE/Win10 (delete as appropriate)
* Using JIT: yes/no (delete as appropriate) <!-- look for the giant yellow warning in the log that says you're using JIT -->
* Server OS:
* Game version: Android/iOS/Win10/Xbox/PS4/Switch (delete as appropriate)

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

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

### Console error, backtrace or other files
<!--- Link a screenshot of the console error message here -->
### Crashdump, backtrace or other files
<!--- Submit crashdumps at https://crash.pmmp.io and paste a link -->
<!--- Use gist or anything else to add other files and add links here -->
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: Help & support on Discord
url: https://discord.gg/qqcpp9q
about: We don't accept support requests on the issue tracker. Please try asking on Discord instead.
- name: Documentation
url: https://github.com/jasonwynn10/MyPlot/wiki
about: PocketMine-MP documentation
3 changes: 2 additions & 1 deletion .github/ISSUE_TEMPLATE/crash.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ assignees: ''

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

<!--- write additional information about the crash to help us find the problem -->
### Additional comments (optional)
14 changes: 0 additions & 14 deletions .github/ISSUE_TEMPLATE/help---support.md

This file was deleted.

12 changes: 0 additions & 12 deletions .github/ISSUE_TEMPLATE/security-vulnerability.md

This file was deleted.

16 changes: 0 additions & 16 deletions .github/support.yml

This file was deleted.

22 changes: 22 additions & 0 deletions .github/workflows/support.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: 'Manage support request issues'

on:
issues:
types: [labeled, unlabeled, reopened]

jobs:
support:
runs-on: ubuntu-latest
steps:
- uses: dessant/support-requests@v2
with:
github-token: ${{ github.token }}
support-label: "Support request"
issue-comment: >
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).
[Docs](https://github.com/jasonwynn10/MyPlot/wiki) | [Discord](https://discord.gg/qqcpp9q)
close-issue: true
lock-issue: false
78 changes: 73 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,73 @@
.gitignore
.idea/
.github/*
.poggit.yml
icon.png
### JetBrains template
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839

# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf

# Generated files
.idea/**/contentModel.xml

# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml

# Gradle
.idea/**/gradle.xml
.idea/**/libraries

# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr

# CMake
cmake-build-*/

# Mongo Explorer plugin
.idea/**/mongoSettings.xml

# File-based project format
*.iws

# IntelliJ
out/

# mpeltonen/sbt-idea plugin
.idea_modules/

# JIRA plugin
atlassian-ide-plugin.xml

# Cursive Clojure plugin
.idea/replstate.xml

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties

# Editor-based Rest Client
.idea/httpRequests

# Android studio 3.1+ serialized cache file
.idea/caches/build_file_checksums.ser

0 comments on commit 8f2b923

Please sign in to comment.