Skip to content

feat(ruby): Ruby language bindings #11384

feat(ruby): Ruby language bindings

feat(ruby): Ruby language bindings #11384

Workflow file for this run

# Approve PRs with "auto-approve". mergify takes care of the actual merge.
name: auto-approve
on:
pull_request:
types:
- labeled # Run when labels are updated
- opened # Run when a PR is initially submitted
- ready_for_review # Run when a Draft PR is upgraded PR
- reopened # Run when a PR is re-opened
- synchronize # Run when a PR head branch is updated
jobs:
auto-approve:
if: |
contains(github.event.pull_request.labels.*.name, 'auto-approve') ||
github.event.label.name == 'auto-approve'
permissions:
actions: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- run: gh pr review --approve "$PR_NUMBER" -R "$REPO"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_NUMBER: ${{ github.event.pull_request.number }}
REPO: ${{ github.repository }}