neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 66fff788f2824ed804f262a4d67da6a807cdc053
parent 85821d8b6fa366f7361f84e07e62dc8fc951f26d
Author: James McCoy <jamessan@jamessan.com>
Date:   Sat, 26 Mar 2022 09:45:54 -0400

Merge pull request #17857 from muniter/jl-breaking-change-label

ci: automatic breaking change label
Diffstat:
M.github/workflows/labeler.yml | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml @@ -30,6 +30,8 @@ jobs: run: gh pr edit "$PR_NUMBER" --add-label "$(echo "$PR_TITLE" | sed -E 's|([[:alpha:]]+)(\(.*\))?!?:.*|\1|')" || true - name: "Extract commit scope and add as label" run: gh pr edit "$PR_NUMBER" --add-label "$(echo "$PR_TITLE" | sed -E 's|[[:alpha:]]+\((.+)\)!?:.*|\1|')" || true + - name: "Extract if the PR is a breaking change and add it as label" + run: gh pr edit "$PR_NUMBER" --add-label "$(echo "$PR_TITLE" | sed -E 's|[[:alpha:]]+(\(.*\))?!:.*|breaking-change|')" || true request-reviewer: if: github.event.pull_request.state == 'open' && github.event.pull_request.draft == false