Skip to content

chore(deps): bump @aws-sdk/client-dynamodb from 3.670.0 to 3.674.0 #322

chore(deps): bump @aws-sdk/client-dynamodb from 3.670.0 to 3.674.0

chore(deps): bump @aws-sdk/client-dynamodb from 3.670.0 to 3.674.0 #322

Workflow file for this run

name: Auto-merge automated PRs
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
dependabot:
runs-on: ubuntu-latest
if: |
github.actor == 'dependabot[bot]' || (
github.actor == 'laneybot[bot]' &&
startsWith(github.event.pull_request.head.ref, 'auto-merge/')
)
steps:
- name: Generate installation token
id: generate-installation-token
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0
with:
app-id: ${{ secrets.LANEYBOT_APP_ID }}
private-key: ${{ secrets.LANEYBOT_PRIVATE_KEY }}
- name: Approve a PR
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ github.token }}
run: >
gh pr review --approve "${PR_URL}" --body "PR from @${{ github.actor
}} automatically approved by the '${{ github.workflow }}' workflow"
- name: Enable auto-merge for automated PRs
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ steps.generate-installation-token.outputs.token }}
run: gh pr merge --auto --rebase "${PR_URL}"