Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

「仕様変更」の抽出対応、および分類の日本語化 #13

Merged
merged 5 commits into from
Dec 15, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github_changelog_generator
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
bugs-label=### バグ修正
enhancement-label=### 機能追加
breaking-label=### 仕様変更
pr-label=### その他変更
2 changes: 1 addition & 1 deletion installChangeLog.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ setlocal

call %~dp0env-set.bat

gem install github_changelog_generator
gem install github_changelog_generator --version 1.15.0.pre.beta
endlocal
6 changes: 6 additions & 0 deletions makeChangeLog.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,14 @@ setlocal

call %~dp0env-set.bat

REM 日本語を扱えるように内部エンコーディングを UTF-8 にする
set RUBYOPT=-EUTF-8:UTF-8

set ACCOUNTNAME=sakura-editor
set PROJECTNAME=sakura
set OUTFILENAME=CHANGELOG.md
set EXCLUDELABELS=duplicate,question,invalid,wontfix,CI,management,refactoring
set BREAKING_LABELS="specification change"

@echo.
@echo INFO: APPVEYOR_REPO_NAME = %APPVEYOR_REPO_NAME%
Expand Down Expand Up @@ -43,6 +47,8 @@ github_changelog_generator ^
-p %PROJECTNAME% ^
-o %OUTFILENAME% ^
--exclude-labels %EXCLUDELABELS% ^
--breaking-labels %BREAKING_LABELS% ^
--cache-file %TEMP%\github-changelog-http-cache ^
--cache-log %TEMP%\github-changelog-logger.log

endlocal