Skip to content

Bump the npm_and_yarn group across 2 directories with 11 updates #170

Bump the npm_and_yarn group across 2 directories with 11 updates

Bump the npm_and_yarn group across 2 directories with 11 updates #170

Workflow file for this run

name: Label Client PRs
on:
pull_request_target:
paths:
- "client/**"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions:
pull-requests: write
jobs:
label-prs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Label PR
run: gh pr edit $PR_NUMBER --add-label $LABEL_NAME
env:
PR_NUMBER: ${{ github.event.number }}
LABEL_NAME: "client"
GH_TOKEN: ${{ github.token }}