Post clang-tidy-review comments #2781
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Post clang-tidy-review comments | |
on: | |
workflow_run: | |
# The name field of the lint action | |
workflows: [clang-tidy-review] | |
types: | |
- completed | |
jobs: | |
build: | |
# avoid trying to post comments on a merged PR | |
if: github.event.pull_request.merged == false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: ZedThree/clang-tidy-review/post@85799d63d217e8d0686b7735fb923acc986d8043 | |
# lgtm_comment_body, max_comments, and annotations need to be set on the posting workflow in a split setup | |
with: | |
# adjust options as necessary | |
lgtm_comment_body: '' | |
annotations: false | |
max_comments: 10 |