diff --git a/.github/workflows/codingstyle.yml b/.github/workflows/codingstyle.yml index d2912485..62706689 100644 --- a/.github/workflows/codingstyle.yml +++ b/.github/workflows/codingstyle.yml @@ -6,13 +6,13 @@ 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 run: | cpplint --recursive --quiet --verbose=3 . 2 > tmp - - name: Comment PR + - name: Comment Pull Request + uses: thollander/actions-comment-pull-request@1.0.1 if: ${{ failure() && github.event_name == 'pull_request' }} with: message: '${{ cat tmp }}'