Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit fdebad7

Browse files
authored
DX-2556: Switch to release drafter (#4302)
* DX-2556: Switch to release drafter, require Composer 2 * style fix * composer 2 * style fix * Don't require Composer 2 yet * Fix travis * code style * fix robofile * Fix test
1 parent c9e181f commit fdebad7

File tree

12 files changed

+437
-5262
lines changed

12 files changed

+437
-5262
lines changed

.gitattributes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
tests export-ignore
2+
.editorconfig export-ignore
3+
.gitignore export-ignore
4+
.travis.yml export-ignore
5+
phpcs.xml.dist export-ignore

.github/release-drafter.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name-template: '$RESOLVED_VERSION'
2+
tag-template: '$RESOLVED_VERSION'
3+
categories:
4+
- title: '🚨 Major changes'
5+
label: 'Breaking change'
6+
- title: '🚀 Enhancements'
7+
label: 'Enhancement'
8+
- title: '🐛 Bug Fixes'
9+
label: 'Bug'
10+
- title: '🧰 Maintenance'
11+
label: 'Chore'
12+
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
13+
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
14+
version-resolver:
15+
major:
16+
labels:
17+
- 'Breaking change'
18+
minor:
19+
labels:
20+
- 'Enhancement'
21+
patch:
22+
labels:
23+
- 'Bug'
24+
default: patch
25+
template: |
26+
## What's new since $PREVIOUS_TAG
27+
28+
$CHANGES

0 commit comments

Comments
 (0)