Skip to content

Commit fec1763

Browse files
feat: build for release
1 parent ee7ace6 commit fec1763

File tree

6 files changed

+15
-9
lines changed

6 files changed

+15
-9
lines changed

README.ja.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@
8787
|INCLUDE_LABELS|プルリクエストに付与されているかチェックするラベル| | |`Label1, Label2`|
8888
|OPENING_COMMENT|開始コメント (DocToc以外のため)|`<!-- toc `| | |
8989
|CLOSING_COMMENT|終了コメント (DocToc以外のため)|`<!-- tocstop `| | |
90+
|SKIP_COMMENT|スキップコメント| | |`<!-- toc skip `|
9091
|GITHUB_TOKEN|アクセストークン|`${{github.token}}`|true|`${{secrets.ACCESS_TOKEN}}`|
9192

9293
### 個別に指定

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ e.g. `README.md`
8888
|INCLUDE_LABELS|Labels used to check if the PullRequest has it| | |`Label1, Label2`|
8989
|OPENING_COMMENT|Opening comment (for other than DocToc)|`<!-- toc `| | |
9090
|CLOSING_COMMENT|Closing comment (for other than DocToc)|`<!-- tocstop `| | |
91+
|SKIP_COMMENT|Skip comment| | |`<!-- toc skip `|
9192
|GITHUB_TOKEN|Access token|`${{github.token}}`|true|`${{secrets.ACCESS_TOKEN}}`|
9293

9394
### Specify options individually

action.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,9 @@ inputs:
3838
description: Closing comment (for other than DocToc)
3939
required: false
4040
default: '<!-- tocstop '
41+
SKIP_COMMENT:
42+
description: Skip comment
43+
required: false
4144
HTML_MODE:
4245
description: Whether it is html mode (deprecated).
4346
required: false

build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"owner":"technote-space","repo":"toc-generator","sha":"FETCH_HEAD","ref":"refs/heads/master","tagName":"test/v4.2.3","branch":"gh-actions","tags":["test/v4.2.3","test/v4.2","test/v4"],"updated_at":"2022-12-09T15:14:05.711Z"}
1+
{"owner":"technote-space","repo":"toc-generator","sha":"9ce7963dfdc62db525f845568ac92926033caebb","ref":"refs/tags/test/v4.3.0.3661516251","tagName":"test/v4.3.0.3661516251","branch":"gh-actions","tags":["test/v4.3.0.3661516251","test/v4.3.0","test/v4.3","test/v4"],"updated_at":"2022-12-09T23:31:12.544Z"}

lib/main.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96162,7 +96162,7 @@ const abortMerge = async (helper, logger) => {
9616296162
const commit = async (helper, logger, context) => {
9616396163
await userConfig(helper, context);
9616496164
logger.startProcess('Committing...');
96165-
await helper.makeCommit(getWorkspace$1(), getCommitMessage(context));
96165+
await helper.makeCommit(getWorkspace$1(), getCommitMessage(context), { args: context.actionDetail.signoff ? ['--signoff'] : undefined });
9616696166
};
9616796167
const push = async (branchName, helper, logger, context) => {
9616896168
logger.startProcess('Pushing to %s@%s...', getRepository(context.actionContext), branchName);
@@ -123230,6 +123230,7 @@ const transformWithWrap = (path, title) => {
123230123230
entryPrefix: getEntryPrefix(),
123231123231
checkOpeningComments: utils$l.uniqueArray(getArrayInput('OPENING_COMMENT').concat(CHECK_OPENING_COMMENT)),
123232123232
checkClosingComments: utils$l.uniqueArray(getArrayInput('CLOSING_COMMENT').concat(CHECK_CLOSING_COMMENT)),
123233+
checkSkipComments: utils$l.uniqueArray(getArrayInput('SKIP_COMMENT').concat(CHECK_SKIP_COMMENT)),
123233123234
isCustomMode: utils$l.getBoolValue(coreExports.getInput('CUSTOM_MODE') || coreExports.getInput('HTML_MODE')),
123234123235
customTemplate: coreExports.getInput('CUSTOM_TEMPLATE') || coreExports.getInput('HTML_TEMPLATE'),
123235123236
itemTemplate: coreExports.getInput('ITEM_TEMPLATE'),

node_modules/.yarn-integrity

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)