Skip to content

Bump rubocop-minitest from 0.33.0 to 0.34.1 #32

Bump rubocop-minitest from 0.33.0 to 0.34.1

Bump rubocop-minitest from 0.33.0 to 0.34.1 #32

name: Dependabot RBI Updater
on:
pull_request:
paths:
- 'Gemfile.lock'
- 'Gemfile'
jobs:
update-rbis:
runs-on: ubuntu-latest
if: ${{ github.triggering_actor == 'dependabot[bot]' }}
steps:
-
name: Checkout
uses: actions/checkout@v4
with:
# persist-credentials: false
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
-
name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
-
name: Update RBIs
run: bin/toys rbi all_types
-
name: Commit RBIs
env:
GITHUB_TOKEN: ${{ secrets.LUNCHMONEY_PAT_TOKEN }}
run: |
git checkout ${{ github.head_ref }}
git config --local user.name "halorrr"
git config --local user.email [email protected]
git commit -a -m "[dependabot skip] Update RBIs" --author="Dependabot RBI Updater <[email protected]>"
git push