Skip to content

Bump rspec from 3.12.0 to 3.13.0 #13

Bump rspec from 3.12.0 to 3.13.0

Bump rspec from 3.12.0 to 3.13.0 #13

name: Automerge Dependabot
on:
pull_request_target:
types: [opened, synchronize, reopened]
jobs:
automerge:
name: Merge Dependabot Pull Pequest
runs-on: ubuntu-latest
permissions:
contents: write
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Merge
uses: actions/github-script@v5
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.rest.pulls.merge({
owner: context.repo.owner,
repo: context.repo.repo,
pull_number: context.issue.number,
merge_method: 'squash'
})