Skip to content

Bump parser from 3.3.4.1 to 3.3.4.2 in /gemfile_steep #76

Bump parser from 3.3.4.1 to 3.3.4.2 in /gemfile_steep

Bump parser from 3.3.4.1 to 3.3.4.2 in /gemfile_steep #76

Workflow file for this run

name: Merge dependabot PRs automatically
on: pull_request_target
permissions:
pull-requests: write
contents: write
env:
blocker_files: steep.gemspec Gemfile gemfile_steep/Gemfile
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Abort if blocker files are changed
run: git diff --exit-code ${{ github.event.pull_request.base.sha }} ${{ github.event.pull_request.head.sha }} -- ${{ env.blocker_files }}
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --merge "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}