Skip to content

Commit

Permalink
Update versioning.yml (#573)
Browse files Browse the repository at this point in the history
PRの制限個数を40に上げた
  • Loading branch information
Mogyuchi authored Jun 8, 2023
1 parent 982d2d2 commit 78c1aa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/versioning.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
version_string=$(jq -r '.version' package.json)
pr=$( (git log --oneline @...v"$version_string" || git log --oneline) | sed -nE 's/.+\((#[0-9]+)\)$/\1/p')
pr_array=($pr)
if [ ${#pr_array[*]} -gt 20 ]; then
if [ ${#pr_array[*]} -gt 40 ]; then
exit 1
fi
labels=$( echo "$pr" | xargs -n1 gh pr view --json labels -q '.labels[].name')
Expand Down

0 comments on commit 78c1aa3

Please sign in to comment.