Skip to content

Bump puma from 6.3.0 to 6.3.1 #35

Bump puma from 6.3.0 to 6.3.1

Bump puma from 6.3.0 to 6.3.1 #35

name: Dependabot auto-merge
on:
pull_request:
types:
- opened
- synchronize
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Wait for CircleCI deploy_check
run: sleep 600
- name: Check for CircleCI deploy_check
id: wait-for-circleci
uses: lewagon/wait-on-check-action@v1.3.1
with:
ref: ${{ github.ref }}
check-name: 'ci/circleci: deploy_check'
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 10
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}