Skip to content

chore(deps): bump qs from 6.14.0 to 6.14.1 in the npm_and_yarn group across 1 directory #269

chore(deps): bump qs from 6.14.0 to 6.14.1 in the npm_and_yarn group across 1 directory

chore(deps): bump qs from 6.14.0 to 6.14.1 in the npm_and_yarn group across 1 directory #269

Workflow file for this run

name: Auto Merge Dependabot PRs
on:
pull_request:
types: [opened, synchronize, reopened]
permissions:
contents: write
pull-requests: write
jobs:
auto-merge:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Auto-merge minor updates
if: steps.metadata.outputs.update-type == 'version-update:semver-minor' || steps.metadata.outputs.update-type == 'version-update:semver-patch'
run: gh pr merge --auto --merge "${{ github.event.pull_request.number }}"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}