Skip to content

chore(deps): bump aws-cli/aws-cli from 2.17.17 to 2.17.18 in /.devcontainer #50

chore(deps): bump aws-cli/aws-cli from 2.17.17 to 2.17.18 in /.devcontainer

chore(deps): bump aws-cli/aws-cli from 2.17.17 to 2.17.18 in /.devcontainer #50

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@31c86eb3b33c9b601a1f60f98dcbfd1d70f379b4 # v1.10.3
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}"