Skip to content

chore: Bump StackExchange.Redis from 3.0.17 to 3.0.25 #507

chore: Bump StackExchange.Redis from 3.0.17 to 3.0.25

chore: Bump StackExchange.Redis from 3.0.17 to 3.0.25 #507

name: Dependabot Auto-Merge
on:
pull_request:
types:
- opened
- reopened
- synchronize
permissions:
contents: write
pull-requests: write
jobs:
enable-auto-merge:
name: Enable Auto-Merge
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.actor == 'dependabot[bot]'
runs-on: ubuntu-slim
steps:
- name: Enable GitHub auto-merge
env:
GH_TOKEN: ${{ github.token }}
PR_URL: ${{ github.event.pull_request.html_url }}
run: gh pr merge "$PR_URL" --auto --squash
disable-auto-merge:
name: Disable Auto-Merge
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.actor != 'dependabot[bot]'
runs-on: ubuntu-slim
steps:
- name: Disable GitHub auto-merge
env:
GH_TOKEN: ${{ github.token }}
PR_URL: ${{ github.event.pull_request.html_url }}
run: gh pr merge "$PR_URL" --disable-auto