We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0adc4b5 commit 9f94b01Copy full SHA for 9f94b01
1 file changed
.github/workflows/require-blog-label.yml
@@ -18,10 +18,10 @@ jobs:
18
env:
19
LABELS: ${{ toJSON(github.event.pull_request.labels.*.name) }}
20
run: |
21
- if echo "$LABELS" | grep -qE '"blog:(pending|skip)"'; then
+ if echo "$LABELS" | grep -qE '"blog:(pending|skip|done)"'; then
22
echo "✅ Blog label found"
23
else
24
- echo "::error::PR に blog:pending または blog:skip ラベルを付けてください"
+ echo "::error::PR に blog:pending または blog:skip または blog:done ラベルを付けてください"
25
exit 1
26
fi
27
0 commit comments