Skip to content

Bump estree-util-value-to-estree from 3.3.2 to 3.3.3 in the npm_and_yarn group #1508

Bump estree-util-value-to-estree from 3.3.2 to 3.3.3 in the npm_and_yarn group

Bump estree-util-value-to-estree from 3.3.2 to 3.3.3 in the npm_and_yarn group #1508

Workflow file for this run

on:
pull_request:
types: [opened]
name: Auto-label new PRs
jobs:
label:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v7
with:
github-token: ${{ secrets.DOCS_GH_PAT }}
script: |
const labels = ['type::feature', 'type::docs']
github.rest.issues.addLabels({
...context.repo,
issue_number: context.issue.number,
labels
})