42c658368a
Bumps [ZedThree/clang-tidy-review](https://github.com/zedthree/clang-tidy-review) from 0.20.1 to 0.21.0. - [Release notes](https://github.com/zedthree/clang-tidy-review/releases) - [Changelog](https://github.com/ZedThree/clang-tidy-review/blob/master/CHANGELOG.md) - [Commits](https://github.com/zedthree/clang-tidy-review/compare/v0.20.1...v0.21.0) --- updated-dependencies: - dependency-name: ZedThree/clang-tidy-review dependency-version: 0.21.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: pajlada <rasmus.karlsson@pajlada.com>
21 lines
416 B
YAML
21 lines
416 B
YAML
---
|
|
name: Post clang-tidy review comments
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ["clang-tidy"]
|
|
types:
|
|
- completed
|
|
|
|
jobs:
|
|
post:
|
|
runs-on: ubuntu-latest
|
|
# Only when a build succeeds
|
|
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
|
|
|
steps:
|
|
- uses: ZedThree/clang-tidy-review/post@v0.21.0
|
|
with:
|
|
lgtm_comment_body: ""
|
|
num_comments_as_exitcode: false
|