Skip to content

Commit 9f94b01

Browse files
okamoto-awsShintaro Okamoto
andauthored
fix: add blog:done label to require-blog-label workflow (#73)
Co-authored-by: Shintaro Okamoto <shintaok@amazon.com>
1 parent 0adc4b5 commit 9f94b01

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/require-blog-label.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
env:
1919
LABELS: ${{ toJSON(github.event.pull_request.labels.*.name) }}
2020
run: |
21-
if echo "$LABELS" | grep -qE '"blog:(pending|skip)"'; then
21+
if echo "$LABELS" | grep -qE '"blog:(pending|skip|done)"'; then
2222
echo "✅ Blog label found"
2323
else
24-
echo "::error::PR に blog:pending または blog:skip ラベルを付けてください"
24+
echo "::error::PR に blog:pending または blog:skip または blog:done ラベルを付けてください"
2525
exit 1
2626
fi
2727

0 commit comments

Comments
 (0)