Skip to content

Commit 5c68b68

Browse files
authored
Merge pull request #5 from secondlife/signal/better-releases
Add automatic release notes, major tag bump
2 parents 544bce7 + df35395 commit 5c68b68

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

.github/release.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
changelog:
2+
exclude:
3+
labels:
4+
- ignore-for-release
5+
authors:
6+
- dependabot
7+
categories:
8+
- title: Breaking Changes 🛠
9+
labels:
10+
- semver-major
11+
- breaking-change
12+
- title: New Features 🎉
13+
labels:
14+
- semver-minor
15+
- enhancement
16+
- title: Other Changes
17+
labels:
18+
- '*'

.github/workflows/bump-major.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: Bump major tag
2+
3+
on:
4+
release:
5+
types: [published]
6+
7+
jobs:
8+
bump:
9+
uses: secondlife/update-major-tag-workflow/.github/workflows/update-major-tag.yaml@v1

0 commit comments

Comments
 (0)