Minor Release Drafter tweaks (#393)
This commit is contained in:
parent
d7e3eb1f55
commit
bb2f55e970
66
.github/release-drafter.yml
vendored
66
.github/release-drafter.yml
vendored
@ -2,28 +2,32 @@
|
|||||||
name-template: "$RESOLVED_VERSION"
|
name-template: "$RESOLVED_VERSION"
|
||||||
tag-template: "$RESOLVED_VERSION"
|
tag-template: "$RESOLVED_VERSION"
|
||||||
categories:
|
categories:
|
||||||
- title: "💣 Breaking Change"
|
- title: "💣 Breaking Changes"
|
||||||
labels:
|
labels:
|
||||||
- "breaking change"
|
- "breaking change"
|
||||||
- title: "🐛 Bug Fixes"
|
- title: "🔔 Deprecation Warnings"
|
||||||
labels:
|
labels:
|
||||||
- "bug"
|
- "deprecation"
|
||||||
- title: "⬆️ Dependencies"
|
|
||||||
labels:
|
|
||||||
- "dependencies"
|
|
||||||
- title: "📝 Documentation"
|
|
||||||
labels:
|
|
||||||
- "documentation"
|
|
||||||
- title: "🚀 Features"
|
- title: "🚀 Features"
|
||||||
labels:
|
labels:
|
||||||
- "feature"
|
- "feature"
|
||||||
- title: "🎉 Enhancements"
|
- title: "🎉 Enhancements"
|
||||||
labels:
|
labels:
|
||||||
- "enhancement"
|
- "enhancement"
|
||||||
|
- title: "🐛 Bug Fixes"
|
||||||
|
labels:
|
||||||
|
- "bug"
|
||||||
|
- title: "📝 Documentation"
|
||||||
|
labels:
|
||||||
|
- "documentation"
|
||||||
|
- title: "⬆️ Dependencies"
|
||||||
|
labels:
|
||||||
|
- "dependencies"
|
||||||
version-resolver:
|
version-resolver:
|
||||||
minor:
|
minor:
|
||||||
labels:
|
labels:
|
||||||
- "breaking change"
|
- "breaking change"
|
||||||
|
- "deprecation"
|
||||||
patch:
|
patch:
|
||||||
labels:
|
labels:
|
||||||
- "bug"
|
- "bug"
|
||||||
@ -33,34 +37,52 @@ version-resolver:
|
|||||||
- "enhancement"
|
- "enhancement"
|
||||||
default: patch
|
default: patch
|
||||||
autolabeler:
|
autolabeler:
|
||||||
- label: "documentation"
|
- label: "breaking change"
|
||||||
|
body:
|
||||||
|
- "/breaking/i"
|
||||||
|
- label: "deprecation"
|
||||||
branch:
|
branch:
|
||||||
- "/docs\/.+/"
|
- "/deprecate\/.+/"
|
||||||
files:
|
title:
|
||||||
- "*.md"
|
- "/deprecate/i"
|
||||||
|
- label: "feature"
|
||||||
|
branch:
|
||||||
|
- "/feat\/.+/"
|
||||||
|
- "/feature\/.+/"
|
||||||
|
- "/implement\/.+/"
|
||||||
|
title:
|
||||||
|
- "/feat/i"
|
||||||
|
- "/feature/i"
|
||||||
|
- "/implement/i"
|
||||||
|
- label: "enhancement"
|
||||||
|
branch:
|
||||||
|
- "/add\/.+/"
|
||||||
|
- "/enhancement\/.+/"
|
||||||
|
title:
|
||||||
|
- "/add/i"
|
||||||
|
- "/enhancement/i"
|
||||||
- label: "bug"
|
- label: "bug"
|
||||||
branch:
|
branch:
|
||||||
- "/fix\/.+/"
|
- "/fix\/.+/"
|
||||||
title:
|
title:
|
||||||
- "/fix/i"
|
- "/fix/i"
|
||||||
- label: "feature"
|
- label: "documentation"
|
||||||
branch:
|
branch:
|
||||||
- "/feat\/.+/"
|
- "/docs\/.+/"
|
||||||
- "/implement\/.+/"
|
files:
|
||||||
|
- "*.md"
|
||||||
title:
|
title:
|
||||||
- "/implement/i"
|
- "/docs/i"
|
||||||
- label: "enhancement"
|
- "/documentation/i"
|
||||||
branch:
|
|
||||||
- "/add\/.+/"
|
|
||||||
title:
|
|
||||||
- "/add/i"
|
|
||||||
- label: "dependencies"
|
- label: "dependencies"
|
||||||
files:
|
files:
|
||||||
- ".github/workflows/requirements/*"
|
- ".github/workflows/requirements/*"
|
||||||
branch:
|
branch:
|
||||||
- "/bump\/.+/"
|
- "/bump\/.+/"
|
||||||
|
- "/update\/.+/"
|
||||||
title:
|
title:
|
||||||
- "/bump/i"
|
- "/bump/i"
|
||||||
|
- "/update/i"
|
||||||
template: |
|
template: |
|
||||||
👾 *Help make the NGINX Ansible role better by participating in our [survey](https://forms.office.com/Pages/ResponsePage.aspx?id=L_093Ttq0UCb4L-DJ9gcUKLQ7uTJaE1PitM_37KR881UM0NCWkY5UlE5MUYyWU1aTUcxV0NRUllJSC4u)!* 👾
|
👾 *Help make the NGINX Ansible role better by participating in our [survey](https://forms.office.com/Pages/ResponsePage.aspx?id=L_093Ttq0UCb4L-DJ9gcUKLQ7uTJaE1PitM_37KR881UM0NCWkY5UlE5MUYyWU1aTUcxV0NRUllJSC4u)!* 👾
|
||||||
|
|
||||||
|
3
.github/workflows/release-drafter.yml
vendored
3
.github/workflows/release-drafter.yml
vendored
@ -6,9 +6,6 @@ on:
|
|||||||
- opened
|
- opened
|
||||||
- reopened
|
- reopened
|
||||||
- synchronize
|
- synchronize
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- main
|
|
||||||
jobs:
|
jobs:
|
||||||
update_release_draft:
|
update_release_draft:
|
||||||
name: Update release draft
|
name: Update release draft
|
||||||
|
Loading…
Reference in New Issue
Block a user