We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0500222 commit 0c815feCopy full SHA for 0c815fe
.github/workflows/check.yml
@@ -123,7 +123,7 @@ jobs:
123
set -ex
124
125
# config
126
- threshold_nitem=50 # コメントの変更記事一覧内の最大ファイル数
+ threshold_nitem=100 # コメントの変更記事一覧内の最大ファイル数
127
threshold_details=20 # <details> を使って折りたたむ閾値
128
129
git remote add base '${{ github.event.pull_request.base.repo.clone_url }}'
@@ -143,7 +143,7 @@ jobs:
143
# generate list items
144
s|^A \(.*\)\.md$|- :memo: [`\1`](${{ steps.vars.outputs.base_url }}/\1.html) :sparkles:|p
145
s|^[^[:space:]]* \(.*\)\.md$|- :memo: [`\1`](${{ steps.vars.outputs.base_url }}/\1.html)|p
146
- '
+ ' | head -n "$((threshold_nitem + 1))"
147
)
148
[[ $content ]] || content='- (内容変更された `.md` ファイルはありません)'
149
nitem=$(wc -l <<< "$content")
0 commit comments