Skip to content

chore(deps): update commonmarker requirement from >= 1.0.4, < 1.2.0 to >= 1.0.4, < 2.1.0 #491

chore(deps): update commonmarker requirement from >= 1.0.4, < 1.2.0 to >= 1.0.4, < 2.1.0

chore(deps): update commonmarker requirement from >= 1.0.4, < 1.2.0 to >= 1.0.4, < 2.1.0 #491

Workflow file for this run

name: Ruby
on:
push:
branches:
- main
pull_request:
permissions:
contents: write
pull-requests: write
jobs:
build:
runs-on: ubuntu-latest
name: Tests
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Rubocop
run: bundle exec rubocop --format github
- name: Run tests
run: bundle exec rake test
env:
TESTOPTS: "--quiet"
merge:
runs-on: ubuntu-latest
name: Auto-merge Dependabot PRs
needs: [build] # Wait for tests to pass
if: ${{ github.actor == 'dependabot[bot]' && github.event_name == 'pull_request'}}
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2.2.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Approve the PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- name: Auto-merge the PR
run: gh pr merge --auto --rebase "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}