Feat/checkov test #46
This file contains 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: Auto approve and merge PRs by dependabot | |
on: pull_request | |
permissions: | |
pull-requests: write | |
jobs: | |
autoapprove: | |
name: Auto Approve a PR by dependabot | |
runs-on: ubuntu-latest | |
steps: | |
- name: Auto approve | |
uses: hmarr/auto-approve-action@v3.2.1 | |
# Perform the auto approve action only when the PR is raised by dependabot | |
if: github.actor == 'dependabot[bot]' | |
with: | |
github-token: '${{ secrets.GITHUB }}' |