2022-08-28 13:32:07 +02:00
|
|
|
---
|
|
|
|
name: Post clang-tidy review comments
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_run:
|
2023-12-02 14:04:43 +01:00
|
|
|
workflows: ["clang-tidy"]
|
2022-08-28 13:32:07 +02:00
|
|
|
types:
|
|
|
|
- completed
|
|
|
|
|
|
|
|
jobs:
|
2024-03-30 11:25:11 +01:00
|
|
|
post:
|
2022-08-28 13:32:07 +02:00
|
|
|
runs-on: ubuntu-latest
|
2023-12-02 14:04:43 +01:00
|
|
|
# Only when a build succeeds
|
|
|
|
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
2022-08-28 13:32:07 +02:00
|
|
|
|
|
|
|
steps:
|
2024-11-09 13:46:22 +01:00
|
|
|
- uses: ZedThree/clang-tidy-review/post@v0.20.0
|
2023-01-26 19:47:32 +01:00
|
|
|
with:
|
|
|
|
lgtm_comment_body: ""
|
2024-03-30 11:25:11 +01:00
|
|
|
num_comments_as_exitcode: false
|