Sha256: e526f2b38e3538b50862dbabaf24bf1f04be9f5a7971bc034ac35d6c2e15f560

Contents?: true

Size: 849 Bytes

Versions: 2

Compression:

Stored size: 849 Bytes

Contents

name: Dependabot Auto Merge

permissions:
  pull-requests: write
  contents: write

on: 
  pull_request:
  # Allows you to run this workflow manually from the Actions tab
  workflow_dispatch:

jobs:
  dependabot:
    # The type of runner that the job will run on
    runs-on: ubuntu-latest
    if: ${{ github.actor == 'dependabot[bot]' }}
    # Steps represent a sequence of tasks that will be executed as part of the job
    steps:
      - name: Dependabot metadata
        id: metadata
        uses: dependabot/fetch-metadata@v1.3.3
        with:
          github-token: "${{ secrets.GITHUB_TOKEN }}"
          
      - name: Enable auto-merge for Dependabot patch update PRs
        run: gh pr merge --auto --merge "$PR_URL"
        env:
          PR_URL: ${{github.event.pull_request.html_url}}
          GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
api-tester-1.1.3 .github/workflows/dependabot.yml
api-tester-1.1.2 .github/workflows/dependabot.yml