Skip to content

chore(deps-dev): bump lodash from 4.17.23 to 4.18.1 #3306

chore(deps-dev): bump lodash from 4.17.23 to 4.18.1

chore(deps-dev): bump lodash from 4.17.23 to 4.18.1 #3306

Workflow file for this run

name: Add Staff Label
on:
issues:
types: [opened, reopened]
pull_request:
types: [opened, reopened]
jobs:
add-staff-label:
if: ${{ github.repository == 'primer/react' }}
runs-on: ubuntu-latest
env:
GH_TOKEN: ${{ github.token }}
steps:
- name: Checkout repository
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
- name: Add label to issue
if: ${{ github.event.issue.author_association == 'MEMBER' }}
run: |
gh issue edit ${{github.event.issue.html_url}} --add-label staff
- name: Add label to pull_request
if: ${{ github.event.pull_request.author_association == 'MEMBER' }}
run: |
gh pr edit ${{github.event.pull_request.html_url}} --add-label staff