build(deps): bump the npm_and_yarn group across 1 directories with 5 updates #6187
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Auto Label | |
on: | |
pull_request_target: | |
types: [ opened, synchronize ] | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
# force to ci checkout main repo to avoid | |
# unexpected PR code to be executed with out github token | |
ref: main | |
- uses: ./.github/actions/setup-js-env | |
- name: Run Label Script | |
run: | | |
node .github/scripts/auto-label.cjs | |
env: | |
GH_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
PR_NUMBER: ${{ github.event.number }} |