Skip to content

Bump github.com/mattn/go-sqlite3 from 1.14.34 to 1.14.37 #17

Bump github.com/mattn/go-sqlite3 from 1.14.34 to 1.14.37

Bump github.com/mattn/go-sqlite3 from 1.14.34 to 1.14.37 #17

Workflow file for this run

name: Auto-merge Dependabot PRs
on:
pull_request:
types:
- opened
- synchronize
permissions:
contents: write
pull-requests: write
jobs:
auto-merge:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Auto-merge Dependabot PRs
if: github.actor == 'dependabot[bot]'
run: |
gh pr merge ${{ github.event.pull_request.number }} --squash --auto --repo ${{ github.repository }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}