From 4abc7adcbb584f7ec43ea9dc8cef7ae9ed353392 Mon Sep 17 00:00:00 2001 From: Antti Kaihola <13725+akaihola@users.noreply.github.com> Date: Sun, 25 Dec 2022 23:58:39 +0200 Subject: [PATCH] Add Black breakage notification to CI build --- .github/workflows/test-future.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/test-future.yml b/.github/workflows/test-future.yml index 9b24c7766..b05c74c32 100644 --- a/.github/workflows/test-future.yml +++ b/.github/workflows/test-future.yml @@ -31,3 +31,10 @@ jobs: - name: Test with pytest run: | pytest + - name: Note a possible Black incompatibility and required actions + if: failure() + run: | + echo "### :x: Black incompatibility? :x: " >>$GITHUB_STEP_SUMMARY + echo "" >>$GITHUB_STEP_SUMMARY + echo "See [#382](/akaihola/darker/issues/382)" >>$GITHUB_STEP_SUMMARY + echo "for possible required actions" >> $GITHUB_STEP_SUMMARY