Skip to content

build(deps-dev): bump minitest from 5.24.1 to 5.25.0 #146

build(deps-dev): bump minitest from 5.24.1 to 5.25.0

build(deps-dev): bump minitest from 5.24.1 to 5.25.0 #146

Workflow file for this run

name: Main
on:
- push
- pull_request_target
jobs:
ci:
name: CI
runs-on: ubuntu-latest
env:
CI: true
steps:
- uses: actions/checkout@master
with:
submodules: recursive
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: '3.1'
- name: Test
run: bundle exec rake test
automerge:
name: AutoMerge
needs: ci
runs-on: ubuntu-latest
if: github.event_name == 'pull_request_target' && github.actor == 'dependabot[bot]'
steps:
- uses: actions/github-script@v3
with:
script: |
github.pulls.merge({
owner: context.payload.repository.owner.login,
repo: context.payload.repository.name,
pull_number: context.payload.pull_request.number
})