draft-release: Don't include automated pull requests
This commit is contained in:
5
.github/release-drafter.yml
vendored
5
.github/release-drafter.yml
vendored
@@ -1,8 +1,9 @@
|
|||||||
version-template: '$MAJOR.$MINOR.$PATCH.0'
|
version-template: '$MAJOR.$MINOR.$PATCH.0'
|
||||||
name-template: 'v$NEXT_PATCH_VERSION 🌈'
|
name-template: 'v$NEXT_PATCH_VERSION'
|
||||||
tag-template: 'v$NEXT_PATCH_VERSION'
|
tag-template: 'v$NEXT_PATCH_VERSION'
|
||||||
exclude-labels:
|
exclude-labels:
|
||||||
- 'skip-changelog'
|
- 'skip-changelog'
|
||||||
|
- 'automated-pull-request'
|
||||||
categories:
|
categories:
|
||||||
- title: '🚀 Features'
|
- title: '🚀 Features'
|
||||||
labels:
|
labels:
|
||||||
@@ -15,7 +16,7 @@ categories:
|
|||||||
- 'bug'
|
- 'bug'
|
||||||
- title: '🧰 Maintenance'
|
- title: '🧰 Maintenance'
|
||||||
label: 'chore'
|
label: 'chore'
|
||||||
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
|
change-template: '* $TITLE (#$NUMBER) @$AUTHOR'
|
||||||
template: |
|
template: |
|
||||||
Thanks to: $CONTRIBUTORS
|
Thanks to: $CONTRIBUTORS
|
||||||
|
|
||||||
|
|||||||
11
.github/workflows/push.yml
vendored
11
.github/workflows/push.yml
vendored
@@ -55,4 +55,13 @@ jobs:
|
|||||||
- name: Assembling
|
- name: Assembling
|
||||||
run: ./gradlew assemble --console=plain
|
run: ./gradlew assemble --console=plain
|
||||||
- name: Checking code conventions
|
- 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 }}
|
||||||
15
.github/workflows/release-drafter.yml
vendored
15
.github/workflows/release-drafter.yml
vendored
@@ -1,15 +0,0 @@
|
|||||||
name: OpenOSRS - Release drafter
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
update_draft_release:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: toolmantim/release-drafter@v5.2.0
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
Reference in New Issue
Block a user