Skip to content

chore(deps): bump codecov/codecov-action from 3.1.0 to 4.0.1 #4

chore(deps): bump codecov/codecov-action from 3.1.0 to 4.0.1

chore(deps): bump codecov/codecov-action from 3.1.0 to 4.0.1 #4

Workflow file for this run

name: Dependabot Automerge
on: [pull_request]
jobs:
dependabot:
runs-on: ubuntu-latest
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@v1.3.1
- name: Approve PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Enable auto-merge for Dependabot PRs
if: ${{ steps.dependabot-metadata.outputs.update-type != 'version-update:semver-major' }}
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }}