Skip to content

Bump dependabot/fetch-metadata from 1.6.0 to 1.7.0 #184

Bump dependabot/fetch-metadata from 1.6.0 to 1.7.0

Bump dependabot/fetch-metadata from 1.6.0 to 1.7.0 #184

Workflow file for this run

name: Auto-merge
on: pull_request_target
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-22.04
if: github.actor == 'dependabot[bot]'
steps:
- id: dependabot-metadata
uses: dependabot/[email protected]
with:
github-token: ${{ github.token }}
- name: Enable auto-merge
if: (steps.dependabot-metadata.outputs.package-ecosystem == 'bundler' || steps.dependabot-metadata.outputs.package-ecosystem == 'npm_and_yarn') && steps.dependabot-metadata.outputs.dependency-type == 'direct:development'
run: gh pr merge --auto --merge "$PR_URL"
env:
GITHUB_TOKEN: ${{ github.token }}
PR_URL: ${{ github.event.pull_request.html_url }}