Take master's changes to meta files

This commit is contained in:
Octavia Togami 2021-03-10 02:48:12 -08:00
parent 98826d649c
commit 3919dcc7fc
No known key found for this signature in database
GPG Key ID: 36855DB2BA11CF6C
5 changed files with 146 additions and 18 deletions

60
.github/ISSUE_TEMPLATE/bug_report.yml vendored Normal file
View File

@ -0,0 +1,60 @@
name: Bug report
description: Report a way in which WorldEdit is not working as intended
title: ''
labels: ['type:bug', 'status:pending']
assignees: []
issue_body: true
body:
- type: markdown
attributes:
value: |
Please note that this is only for bugs, help with installation or other types of support should
be taken to the Discord Guild instead.
- type: input
attributes:
label: WorldEdit Version
description: The full version of WorldEdit, can be found by using `/we version`.
placeholder: e.g. 7.2.3 or 7.3.0-SNAPSHOT
validations:
required: true
- type: input
attributes:
label: Platform Version
description: |
The version of the platform you are on, i.e. Spigot, Paper, Fabric, or Forge.
Please ensure you are running up to date software before making a bug report.
Old versions will receive little to no support.
placeholder: e.g. git-Spigot-21fe707-e1ebe52, git-Paper-463, Fabric 0.7.1, Forge 35.1.37
validations:
required: true
- type: textarea
attributes:
label: Bug Description
description: A clear and concise description of what the bug is.
validations:
required: true
- type: textarea
attributes:
label: Expected Behavior
description: The behavior that you expected, instead of the bugged behavior that occurs.
validations:
required: true
- type: textarea
attributes:
label: Reproduction Steps
description: Steps to reproduce the behavior.
value: |
1. ...
2. ...
validations:
required: true
- type: markdown
attributes:
value: Add any additional context you can provide below.

View File

@ -0,0 +1,44 @@
name: Feature request
description: Suggest an idea for WorldEdit
title: ''
labels: ['type:feature-request', 'status:pending']
assignees: []
issue_body: true
body:
- type: markdown
attributes:
value: >
Please note: we are currently not accepting feature requests designed to make it
easier to give WorldEdit to all players on a server. WorldEdit is intended for
admin use only.
- type: textarea
attributes:
label: The Problem
description: >
What is making your WorldEdit experience sub-optimal? This should be something that
cannot be easily solved by existing WorldEdit features.
placeholder: It's hard to ... ; I'm unable to ...
validations:
required: true
- type: textarea
attributes:
label: A Solution
description: What is your proposed solution to the above problem?
validations:
required: true
- type: textarea
attributes:
label: Alternatives
description: |
Alternative solutions or workarounds to the problem.
You should also describe why these are not preferable to the given solution.
validations:
required: false
- type: markdown
attributes:
value: Add any additional context you can provide below.

16
.github/stale.yml vendored Normal file
View File

@ -0,0 +1,16 @@
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 60
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 7
# Only close pending bugs
onlyLabels:
- status:pending
- type:bug
# Label to use when marking an issue as stale
staleLabel: status:stale
# Comment to post when marking an issue as stale. Set to `false` to disable
markComment: >
This issue has been automatically marked as stale because it has not been fully confirmed.
It will be closed if no further activity occurs. Thank you for your contributions.
# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: false

26
.github/workflows/gradle.yml vendored Normal file
View File

@ -0,0 +1,26 @@
name: Gradle Build
on: [push, pull_request]
jobs:
build:
name: Build WorldEdit on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Gradle
run: ./gradlew build -s
- uses: actions/upload-artifact@v2
name: Archive Reports
if: always()
with:
name: reports for ${{ matrix.os }}
path: '**/build/reports/**'

View File

@ -1,18 +0,0 @@
dist: trusty
language: java
notifications:
email: false
before_install: chmod +x gradlew
script: ./gradlew build -s
jdk:
- oraclejdk8
# Caching for Gradle files, prevents hitting Maven too much.
before_cache:
- find $HOME/.gradle/ -name '*.lock' -print -exec rm -f {} \;
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/
# Faster builds without sudo.
sudo: false