Skip to content

build(deps): bump actions/checkout from 5 to 6 #610

build(deps): bump actions/checkout from 5 to 6

build(deps): bump actions/checkout from 5 to 6 #610

Workflow file for this run

name: Verify Pull Request Labels
on:
pull_request_target:
types: [opened, reopened, labeled, unlabeled]
jobs:
verify_pr_labels:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Verify Pull Request Labels
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const script = require('./.github/workflows/scripts/check_label.js');
await script({github, context, core})