Merge remote-tracking branch 'upstream/master' into cache

This commit is contained in:
Owain van Brakel
2019-11-07 14:43:44 +01:00
183 changed files with 4290 additions and 9308 deletions

25
.github/release-drafter.yml vendored Normal file
View File

@@ -0,0 +1,25 @@
version-template: '$MAJOR.$MINOR.$PATCH.0'
name-template: 'v$NEXT_PATCH_VERSION'
tag-template: 'v$NEXT_PATCH_VERSION'
exclude-labels:
- 'skip-changelog'
- 'automated-pull-request'
categories:
- title: '🚀 Features'
labels:
- 'feature'
- 'enhancement'
- title: '🐛 Bug Fixes'
labels:
- 'fix'
- 'bugfix'
- 'bug'
- title: '🧰 Maintenance'
label: 'chore'
change-template: '* $TITLE (#$NUMBER) @$AUTHOR'
template: |
Thanks to: $CONTRIBUTORS
## Changes
$CHANGES

15
.github/workflows/greetings.yml vendored Normal file
View File

@@ -0,0 +1,15 @@
name: OpenOSRS - First interaction
on:
issues:
types: [opened]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
issue-message: 'Thank you for opening your first issue! Please make sure to join our [Discord](https://discord.gg/openosrs).'

View File

@@ -17,4 +17,21 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MERGE_FORKS: false
LABELS: automated-pull-request
AUTOMERGE: automated-pull-request
AUTOMERGE: automated-pull-request
cleanup:
name: Cleanup
needs: automerge
runs-on: ubuntu-latest
steps:
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo $(jq --raw-output .pull_request.head.ref "$GITHUB_EVENT_PATH"))"
id: extract_branch
- name: Delete PR head branch
uses: dawidd6/action-delete-branch@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ steps.extract_branch.outputs.branch }}
be_kind: true

View File

@@ -73,4 +73,13 @@ jobs:
- name: Assembling
run: ./gradlew assemble --console=plain
- name: Checking code conventions
run: ./gradlew checkstyleMain --console=plain
run: ./gradlew checkstyleMain --console=plain
update_draft_release:
name: Draft release
runs-on: ubuntu-latest
steps:
- uses: toolmantim/release-drafter@v5.2.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}