Skip to content

Bump the npm_and_yarn group across 2 directories with 2 updates #158

Bump the npm_and_yarn group across 2 directories with 2 updates

Bump the npm_and_yarn group across 2 directories with 2 updates #158

Workflow file for this run

name: Label Client PRs
on:
pull_request_target:
paths:
- 'client/**'
permissions:
pull-requests: write
jobs:
label-prs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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 }}