From e28ccf4cbb64ee9975b23c974b50ad1f0a4315f9 Mon Sep 17 00:00:00 2001 From: Silthus <755327+Silthus@users.noreply.github.com> Date: Wed, 10 Jun 2020 11:17:00 +0200 Subject: [PATCH] feat: auto update dependencies with dependabot --- .github/workflows/auto-approve-dependabot.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/auto-approve-dependabot.yaml diff --git a/.github/workflows/auto-approve-dependabot.yaml b/.github/workflows/auto-approve-dependabot.yaml new file mode 100644 index 0000000..d6aa5b8 --- /dev/null +++ b/.github/workflows/auto-approve-dependabot.yaml @@ -0,0 +1,13 @@ +name: Auto approve + +on: + pull_request + +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 }}"