Skip to content

build(deps-dev): bump jotai from 2.10.3 to 2.10.4 in /app-src #255

build(deps-dev): bump jotai from 2.10.3 to 2.10.4 in /app-src

build(deps-dev): bump jotai from 2.10.3 to 2.10.4 in /app-src #255

Workflow file for this run

name: Dependabot auto-merge
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
merge:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Check if automatic-merge label exists
if: contains(github.event.pull_request.labels.*.name, 'automatic-merge')
run: |
echo "Automatic merge label found."
- name: Enable auto-merge for Dependabot PRs
if: contains(github.event.pull_request.labels.*.name, 'automatic-merge')
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{secrets.GITHUB_TOKEN }}