Skip to content

Commit 314c97d

Browse files
authored
feat: add release-please workflow (#3)
This adds automated release management using Google's release-please action. The workflow will: - Create and maintain release PRs based on conventional commits - Update package.json version on release - Generate CHANGELOG.md - Create GitHub releases when release PR is merged Release-As: 1.0.0
1 parent 451aeb8 commit 314c97d

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/release.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Draft Release
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
permissions:
9+
contents: write
10+
pull-requests: write
11+
12+
jobs:
13+
draft:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: googleapis/release-please-action@v4
17+
with:
18+
token: ${{ secrets.GITHUB_TOKEN }}
19+
release-type: node

0 commit comments

Comments
 (0)