Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
[*.{java,html}]
charset = utf-8
indent_style = tab
indent_style = space
indent_size = 4
trim_trailing_whitespace = true

[*.{yml, yaml}]
indent_size = 2
29 changes: 29 additions & 0 deletions .github/release-drafter-master.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name-template: $NEXT_MINOR_VERSION
tag-template: $NEXT_MINOR_VERSION
filter-by-commitish: true
commitish: master
template: |
## What's Changed

$CHANGES
categories:
- title: '💥 Breaking API Changes'
label: 'kind/breaking'
- title: '🚀 Features & Enhancements'
labels:
- 'kind/enhancement'
- 'kind/feature'
- title: '🐛 Bug Fixes'
label: 'kind/bug'
- title: '🧹 Refactor'
label: 'kind/refactor'
- title: '📝 Documentation'
label: 'kind/documentation'
- title: '📦 Dependency Updates'
label: 'kind/dependencies'
collapse-after: 5
change-template: '* (#$NUMBER) $TITLE by @$AUTHOR'
exclude-labels:
- 'kind/question'
- 'kind/wontfix'
- 'meta/skip-changelog'
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
java: [ 8, 11, 17 ]
steps:
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v3.1.0
with:
fetch-depth: 0

- name: Setup Java ${{ matrix.java }}
uses: actions/setup-java@v3
uses: actions/setup-java@v3.5.1
with:
distribution: temurin
java-version: ${{ matrix.java }}
Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Release Drafter

on:
push:
branches:
- master

permissions:
contents: read

jobs:
update_release_draft:
permissions:
contents: write # for release-drafter to create a GitHub release
runs-on: ubuntu-latest
steps:
- uses: release-drafter/[email protected]
with:
config-name: release-drafter-master.yml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}