Skip to content

Commit

Permalink
release: add release-helper and configuration for release notes gener…
Browse files Browse the repository at this point in the history
…ation
  • Loading branch information
MasatoMakino committed Dec 23, 2024
1 parent e77dfb4 commit f2716f8
Show file tree
Hide file tree
Showing 3 changed files with 258 additions and 2 deletions.
26 changes: 26 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Description: This file is generated by masatomakino/release-helper
# This file is used to configure the release notes generation.

changelog:
categories:
- title: "🚨 Breaking Changes"
labels:
- major
- title : "🪛 Changes"
labels:
- "*"
exclude:
labels:
- major
- dependencies
- release
- CICD
- title: "🤖 CI / CD"
labels:
- CICD
- title: "🔧 Dependencies"
labels:
- dependencies
exclude:
labels:
- major
229 changes: 229 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
},
"devDependencies": {
"@masatomakino/gulptask-demo-page": "^0.8.3",
"@masatomakino/release-helper": "^0.1.6",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/three": "^0.171.0",
"@vitest/browser": "*",
Expand Down Expand Up @@ -55,8 +56,8 @@
"watch:demo": "npm run demo -- -W",
"watch:tsc": "tsc -W",
"prepare": "husky",
"preversion": "git checkout main && git pull && npm ci && npx vitest --run",
"postversion": "git add package.json package-lock.json && git checkout -b version/$(git describe --tags --abbrev=0)"
"preversion": "npx @masatomakino/release-helper preversion",
"postversion": "npx @masatomakino/release-helper postversion"
},
"lint-staged": {
"*.{js,ts,css,md}": "prettier --write"
Expand Down

0 comments on commit f2716f8

Please sign in to comment.