mirror of
https://github.com/aseprite/aseprite.git
synced 2024-11-20 05:14:45 +00:00
19 lines
339 B
YAML
19 lines
339 B
YAML
name: Post Clang Tidy Comments
|
|
on:
|
|
workflow_run:
|
|
workflows: ["Clang Tidy Diff"]
|
|
types:
|
|
- completed
|
|
|
|
permissions:
|
|
checks: write
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
post-comments:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: ZedThree/clang-tidy-review/post@v0.14.0
|
|
with:
|
|
token: ${{ secrets.CLANG_TIDY_TOKEN }}
|