Skip to content

[dependabot] npm: Bump @types/react from 18.2.47 to 18.2.73 #152

[dependabot] npm: Bump @types/react from 18.2.47 to 18.2.73

[dependabot] npm: Bump @types/react from 18.2.47 to 18.2.73 #152

name: Dependabot Automation
on: pull_request
permissions:
pull-requests: write
issues: write
repository-projects: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1
with:
github-token: "${{ github.token }}"
- name: Add a label for all production dependencies
if: steps.metadata.outputs.dependency-type == 'direct:production'
run: gh pr edit "$PR_URL" --add-label "production"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{ github.token }}
- name: Add a label for all production dependencies
if: steps.metadata.outputs.dependency-type != 'direct:production'
run: gh pr edit "$PR_URL" --add-label "patch"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{ github.token }}