From 29b42b3b37e51fe22669402f88e4a711ccca01dd Mon Sep 17 00:00:00 2001 From: Laurent Cozic Date: Fri, 24 Nov 2023 16:10:23 +0100 Subject: [PATCH] CI: Add a comment when a pull request fail --- .github/workflows/comment-on-failure.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/comment-on-failure.yml diff --git a/.github/workflows/comment-on-failure.yml b/.github/workflows/comment-on-failure.yml new file mode 100644 index 000000000..d3653ae79 --- /dev/null +++ b/.github/workflows/comment-on-failure.yml @@ -0,0 +1,13 @@ +on: + workflow_run: + workflows: + - Joplin Continuous Integration + - react-native-android-build-apk + - Build macOS M1 + types: [ completed ] + +jobs: + comment-failure: + runs-on: ubuntu-latest + steps: + - uses: quipper/comment-failure-action@v0.1.1