Skip to content

Bump coverallsapp/github-action from 2.2.1 to 2.2.2 #13

Bump coverallsapp/github-action from 2.2.1 to 2.2.2

Bump coverallsapp/github-action from 2.2.1 to 2.2.2 #13

name: Dependabot auto-merge
on:
pull_request:
types: [opened, synchronize, reopened, labeled]
branches:
- master
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: |
github.event.pull_request.user.login == 'dependabot[bot]' &&
github.event.pull_request.auto_merge == null &&
contains(github.event.pull_request.labels.*.name, 'github_actions')
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v1
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
- name: Enable auto-merge for Dependabot PRs
if: ${{ contains(fromJSON('["version-update:semver-minor", "version-update:semver-patch"]'), steps.metadata.outputs.update-type) }}
run: gh pr review --approve "$PR_URL" && gh pr merge --auto --rebase "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}