Skip to content

Commit

Permalink
Added GitHub workflow and template
Browse files Browse the repository at this point in the history
  • Loading branch information
Falcion committed Jan 25, 2021
1 parent 199ecd6 commit 6535cf4
Show file tree
Hide file tree
Showing 5 changed files with 112 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
name: Bug report
about: Create a report about bug to help us improve.
title: ''
labels: 'bug'
assignees: Falcion

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. '...'

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
27 changes: 27 additions & 0 deletions .github/ISSUE_TEMPLATE/crash_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
name: Crash report
about: Create a report about crash to help us improve.
title: 'CRASH: Type your crash report title here.'
labels: 'high priority, crash'
assignees: Falcion

---

**Describe the crash**
A clear and concise description of what the crash is.

**Link to client log:**
Even of there is a crash log, the client log can provide the necessary context for why the exception occurred. You can use a service like [Pastebin](https://pastebin.com) or [Hastebin](https://hastebin.com) to upload the log, and paste the link here. The log file is called `latest.txt` and can be found in your logs folder.

**Link to crash log:**
The call-stacks in the log will help pinpoint the actors involved in the crash and give a developer a pointer where to start looking at the problem. You can use a service like [Pastebin](https://pastebin.com) or [Hastebin](https://hastebin.com) to upload the log, and paste the link here.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
17 changes: 17 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
name: Feature request
about: Suggest an idea for this project.
title: 'FEATURE: Type your feature request title here.'
labels: 'feature request'
assignees: Falcion

---

**Describe and idea:**
Describe your idea here.

**Describe the solution you'd like:**
A clear and concise description of what you want to happen.

**Additional context**
Add any other context or screenshots about the feature request here.
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Question
about: Ask a question about this project.
title: 'QUESTION: Type your question title here.'
labels: 'question'
assignees: Falcion

---

**Describe a question:**
Describe your question here.

**Additional context**
Add any other context or screenshots about the question here.
26 changes: 26 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle

name: Java CI with Gradle

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build

0 comments on commit 6535cf4

Please sign in to comment.