Skip to content

[dependabot] npm: Bump geist from 1.0.0 to 1.1.0 #6

[dependabot] npm: Bump geist from 1.0.0 to 1.1.0

[dependabot] npm: Bump geist from 1.0.0 to 1.1.0 #6

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: "${{ secrets.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}}
- name: Add a label for dependencies name
run: gh pr edit "$PR_URL" --add-label "${{steps.metadata.outputs.dependency-names}}"
env:
PR_URL: ${{github.event.pull_request.html_url}}