Bump rubocop-minitest from 0.33.0 to 0.34.1 #32
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |