Skip to content

chore(deps): bump github.com/jackc/pgx/v5 from 5.7.0 to 5.7.1 in /service/cron #355

chore(deps): bump github.com/jackc/pgx/v5 from 5.7.0 to 5.7.1 in /service/cron

chore(deps): bump github.com/jackc/pgx/v5 from 5.7.0 to 5.7.1 in /service/cron #355

name: Dependabot auto-merge
on:
pull_request:
paths:
- 'service/**'
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Auto-merge
if: >-
(steps.metadata.outputs.update-type == 'version-update:semver-minor' ||
steps.metadata.outputs.update-type == 'version-update:semver-patch')
run: gh pr review --approve "$PR_URL" && gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}