Skip to content

Bump axios from 1.7.5 to 1.7.7 #245

Bump axios from 1.7.5 to 1.7.7

Bump axios from 1.7.5 to 1.7.7 #245

Workflow file for this run

name: "Dependabot Automerge - Action"
on:
pull_request:
permissions:
pull-requests: write
contents: write
jobs:
worker:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: automerge
uses: actions/github-script@0.2.0
with:
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
})
github-token: ${{ secrets.GITHUB_TOKEN }}