Skip to content

chore(deps-dev): bump the parcel group with 3 updates #65

chore(deps-dev): bump the parcel group with 3 updates

chore(deps-dev): bump the parcel group with 3 updates #65

Workflow file for this run

name: Pull requests
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
build:
uses: ./.github/workflows/build.yml
secrets: inherit
auto-merge:
if: ${{ github.actor == 'dependabot[bot]' }}
needs: build
runs-on: ubuntu-latest
steps:
- name: Fetch dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1.6.0
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
- name: Merge non-major dependency updates
if: ${{steps.metadata.outputs.update-type != 'version-update:semver-major'}}
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}