mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
584a7c86fc
* Only run the `post-clang-tidy-review` if the `clang-tidy` build succeeded
20 lines
375 B
YAML
20 lines
375 B
YAML
---
|
|
name: Post clang-tidy review comments
|
|
|
|
on:
|
|
workflow_run:
|
|
workflows: ["clang-tidy"]
|
|
types:
|
|
- completed
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
# Only when a build succeeds
|
|
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
|
|
|
steps:
|
|
- uses: ZedThree/clang-tidy-review/post@v0.14.0
|
|
with:
|
|
lgtm_comment_body: ""
|