Bump dockerode from 4.0.6 to 4.0.7 in the prod-dependencies group #5642
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dependabot auto-merge | |
on: pull_request_target | |
permissions: | |
pull-requests: write | |
contents: write | |
jobs: | |
dependabot: | |
runs-on: ubuntu-latest | |
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }} | |
steps: | |
- name: Generate token | |
id: generate_token | |
uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6 | |
with: | |
app-id: ${{ secrets.DEPENDABOT_ACTION_TOKEN_AUTOMATION_CLIENT_ID }} | |
private-key: ${{ secrets.DEPENDABOT_ACTION_TOKEN_AUTOMATION_PRIVATE_KEY }} | |
- name: Auto-merge | |
run: gh pr merge --auto --merge "${{ github.event.pull_request.html_url }}" | |
env: | |
# Enable the automerge using the generated token so the merge commits trigger workflows | |
GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }} |