From 6bd0e89cf056969fe0f9028815d83786c53dfec6 Mon Sep 17 00:00:00 2001 From: lmatz Date: Tue, 27 Aug 2024 15:15:01 +0800 Subject: [PATCH] chore: create an issue in the doc repo if it is a breaking change (#18263) --- .github/workflows/auto-create-doc-issue-by-pr.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/auto-create-doc-issue-by-pr.yml b/.github/workflows/auto-create-doc-issue-by-pr.yml index d5b641de5664..7d25fb29a502 100644 --- a/.github/workflows/auto-create-doc-issue-by-pr.yml +++ b/.github/workflows/auto-create-doc-issue-by-pr.yml @@ -29,6 +29,8 @@ jobs: echo "documentation_update=true" >> $GITHUB_OUTPUT elif [[ $PR_LABEL == *"user-facing-changes"* ]]; then echo "documentation_update=true" >> $GITHUB_OUTPUT + elif [[ $PR_LABEL == *"breaking-change"* ]]; then + echo "documentation_update=true" >> $GITHUB_OUTPUT else echo "documentation_update=false" >> $GITHUB_OUTPUT fi