Skip to content

ci: Add Github action to add "has:owner-approval" label for approved PRs #11996

ci: Add Github action to add "has:owner-approval" label for approved PRs

ci: Add Github action to add "has:owner-approval" label for approved PRs #11996

Workflow file for this run

name: Lint PR
on:
pull_request_target:
types:
- opened
- edited
- synchronize
jobs:
main:
name: Validate PR title
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run add-labels-to-reviewed-pr.sh
run: ./.github/workflows/scripts/add-labels-to-reviewed-pr.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
REPO: ${{ github.repository }}
PR: ${{ github.event.number }}