Skip to content

Bump clouddrove/subnet/aws from 2.0.0 to 2.0.1 in /_example/alb #4

Bump clouddrove/subnet/aws from 2.0.0 to 2.0.1 in /_example/alb

Bump clouddrove/subnet/aws from 2.0.0 to 2.0.1 in /_example/alb #4

Workflow file for this run

name: Auto approve and merge PRs by dependabot
on:
pull_request:
types:
- synchronize
- opened
- reopened
permissions:
contents: write
pull-requests: write
jobs:
autoapprove:
name: Auto Approve a PR by dependabot
runs-on: ubuntu-latest
if: github.actor == 'dependabot[bot]'
steps:
- name: Approve a PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
# - name: Auto approve
# uses: hmarr/[email protected]
# if: github.actor == 'dependabot[bot]'
# with:
# github-token: ${{ secrets.GITHUB }}
automerge:
runs-on: ubuntu-latest
steps:
- id: automerge
name: automerge
uses: pascalgn/[email protected]
if: github.event_name == 'pull_request' && github.event.action == 'synchronize' && github.event.pull_request.draft == false && success()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB }}
MERGE_FILTER_AUTHOR: 'dependabot[bot]'
MERGE_METHOD: "merge"
MERGE_DELETE_BRANCH: "true"
MERGE_LABELS: "dependencies"
MERGE_REQUIRED_APPROVALS: ""