Skip to content

Add chdb support

Add chdb support #122

name: Minimize Resolved Reviews
on:
pull_request_review:
types: [submitted]
pull_request_review_comment:
types: [created, edited]
issue_comment:
types: [created]
permissions:
pull-requests: write
jobs:
minimize:
runs-on: ubuntu-latest
if: >-
github.event_name != 'issue_comment' || (
contains(github.event.comment.body, '/tidy') &&
github.event.issue.pull_request &&
contains(fromJSON('["OWNER","MEMBER","COLLABORATOR"]'), github.event.comment.author_association)
)
steps:
- name: Minimize resolved review threads
uses: strawgate/minimize-resolved-pr-reviews@v0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}