Skip to content

Bump io.github.url-detector:url-detector from 0.1.23 to 0.1.24 #124

Bump io.github.url-detector:url-detector from 0.1.23 to 0.1.24

Bump io.github.url-detector:url-detector from 0.1.23 to 0.1.24 #124

Workflow file for this run

name: Auto-merge Dependabot PRs
on:
pull_request:
types: [opened, synchronize] # when PR is created or updated
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Fetch Dependabot metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@25dd0e34f4fe68f24cc83900b1fe3fe149efef98 # v3.1.0
- 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}}