Skip to content

Bump dotenv from 16.6.1 to 17.3.1 #2

Bump dotenv from 16.6.1 to 17.3.1

Bump dotenv from 16.6.1 to 17.3.1 #2

Workflow file for this run

name: "🔄 Auto-Merge Dependabot"
on:
pull_request_target:
types: [opened, synchronize, reopened]
permissions:
contents: write
pull-requests: write
jobs:
auto-merge:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Approve & Merge
run: |
gh pr review "$PR_URL" --approve --body "🤖 Auto-approved dependabot update"
gh pr merge "$PR_URL" --auto --squash
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}