Skip to content

Bump axios from 0.21.4 to 1.6.4 #357

Bump axios from 0.21.4 to 1.6.4

Bump axios from 0.21.4 to 1.6.4 #357

Workflow file for this run

name: "Dependabot"
on:
pull_request:
branches:
- 'main'
jobs:
automerge:
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: automerge
uses: actions/github-script@0.2.0
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.pullRequests.createReview({
owner: context.payload.repository.owner.login,
repo: context.payload.repository.name,
pull_number: context.payload.pull_request.number,
event: 'APPROVE'
})
github.pullRequests.merge({
owner: context.payload.repository.owner.login,
repo: context.payload.repository.name,
pull_number: context.payload.pull_request.number,
merge_method: 'squash'
})