Skip to content

Update benchmark results (2026-05-30 07:01 UTC) #77

Update benchmark results (2026-05-30 07:01 UTC)

Update benchmark results (2026-05-30 07:01 UTC) #77

Workflow file for this run

name: Auto-approve PR
on:
pull_request_target:
types: [opened, synchronize, reopened]
permissions:
pull-requests: write
contents: write
jobs:
approve:
if: |
github.event.pull_request.user.login == 'python-lsp-compare-bot' ||
github.event.pull_request.user.login == 'python-lsp-compare-bot[bot]'
runs-on: ubuntu-latest
steps:
- id: app-token
uses: tibdex/github-app-token@v2
with:
app_id: ${{ secrets.PYTHON_LSP_COMPARE_REVIEW_BOT_APP_ID }}
private_key: ${{ secrets.PYTHON_LSP_COMPARE_REVIEW_BOT_PRIVATE_KEY }}
- name: Auto-approve
uses: hmarr/auto-approve-action@v4
with:
github-token: ${{ steps.app-token.outputs.token }}
- name: Enable auto-merge
run: |
gh pr merge ${{ github.event.pull_request.number }} \
--repo ${{ github.repository }} \
--auto \
--squash
env:
GH_TOKEN: ${{ github.token }}