Skip to content

chore: bump @equinor/eds-core-react from 0.41.2 to 0.42.0 #10358

chore: bump @equinor/eds-core-react from 0.41.2 to 0.42.0

chore: bump @equinor/eds-core-react from 0.41.2 to 0.42.0 #10358

Workflow file for this run

name: dependabot
on:
pull_request:
jobs:
auto-approve-patch:
if: ${{ github.actor == 'dependabot[bot]' }}
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: "${{ github.token }}"
- name: Enable auto-merge for Dependabot PRs
if: ${{ steps.metadata.outputs.update-type == 'version-update:semver-patch'}}
run: |
gh pr review --approve "$PR_URL"
gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ github.token }}