Skip to content

chore(deps): bump web-vitals from 1.1.2 to 3.5.0 #42

chore(deps): bump web-vitals from 1.1.2 to 3.5.0

chore(deps): bump web-vitals from 1.1.2 to 3.5.0 #42

Workflow file for this run

name: automerge
on:
pull_request:
types:
- opened
- labeled
- ready_for_review
- reopened
- synchronize
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
automerge:
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
if: contains(github.event.pull_request.labels.*.name, 'automerge') && github.event.pull_request.draft == false
steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- name: Turn on automerge for this PR by Dependabot
if: github.actor == 'dependabot[bot]'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh pr merge --auto --squash ${{ github.event.pull_request.number }}
- name: Turn on automerge for this PR by users other than Dependabot
if: github.actor != 'dependabot[bot]'
env:
GH_TOKEN: ${{ secrets.TEAM_TF_CDK }}
run: gh pr merge --auto --squash ${{ github.event.pull_request.number }}