From 06d2db629bf4c573b31a75e373458a3e4789a345 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Le=20Bihan?= Date: Sun, 23 May 2021 19:53:24 +0200 Subject: [PATCH] retry comment --- .github/workflows/codingstyle.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codingstyle.yml b/.github/workflows/codingstyle.yml index c8456f8d..cad23f83 100644 --- a/.github/workflows/codingstyle.yml +++ b/.github/workflows/codingstyle.yml @@ -1,5 +1,5 @@ name: Check coding style -on: [push] +on: [push, pull_request] jobs: Building: @@ -10,4 +10,9 @@ jobs: run: pip install cpplint - name: Check coding style run: | - cpplint --recursive --quiet --verbose=3 . \ No newline at end of file + cpplint --recursive --quiet --verbose=3 . + - name: Comment PR + uses: thollander/actions-comment-pull-request@master + with: + message: 'Example of message !' + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file