From 21b79e6bffa37adf4a91774e6c83daf96435da93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Le=20Bihan?= Date: Sun, 23 May 2021 19:23:52 +0200 Subject: [PATCH] fix ci --- .github/workflows/codingstyle.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codingstyle.yml b/.github/workflows/codingstyle.yml index e3a63dc5..d2912485 100644 --- a/.github/workflows/codingstyle.yml +++ b/.github/workflows/codingstyle.yml @@ -6,6 +6,7 @@ jobs: runs-on: [ubuntu-latest] steps: - uses: actions/checkout@v1 + - uses: thollander/actions-comment-pull-request@master - name: Install cpplint run: pip install cpplint - name: Run cpplint @@ -13,7 +14,6 @@ jobs: cpplint --recursive --quiet --verbose=3 . 2 > tmp - name: Comment PR if: ${{ failure() && github.event_name == 'pull_request' }} - uses: thollander/actions-comment-pull-request@master with: - message: ${{ cat tmp }} + message: '${{ cat tmp }}' GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file