Skip to content

Dependabot config

Dependabot config #22

Workflow file for this run

name: Merge dependabot PRs automatically
on:
pull_request_target:
paths:
- '**/*'
- '!rbs.gemspec'
- '!Gemfile'
- '!steep/Gemfile'
permissions:
pull-requests: write
contents: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Hello
run: echo Hello world
- 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}}