From 2cd7420fe3842720c399b657fdab41efed98785c Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Thu, 18 Feb 2021 16:54:57 +0200 Subject: [PATCH] Auto Approve Dependabot --- .github/workflows/auto-approve.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/auto-approve.yml diff --git a/.github/workflows/auto-approve.yml b/.github/workflows/auto-approve.yml new file mode 100644 index 0000000..b36f4d7 --- /dev/null +++ b/.github/workflows/auto-approve.yml @@ -0,0 +1,13 @@ +name: Auto Approve Dependabot + +on: + branches: [ master ] + +jobs: + auto-approve: + runs-on: ubuntu-latest + steps: + - uses: hmarr/auto-approve-action@v2.0.0 + if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]' + with: + github-token: "${{ secrets.GITHUB_TOKEN }}"