summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2020-01-06 08:36:58 +0100
committerGitHub <noreply@github.com>2020-01-06 08:36:58 +0100
commit783c7a6489bbe6a7f9034c9a343b67d935b864f3 (patch)
tree63c186d158fc31c892914ded9c9949c8f2ec4bfd /.github
parent4d3c86d3afa9e3a238506fdd85287cc55b6d275a (diff)
Create dependabot-approve.yml
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/dependabot-approve.yml11
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/dependabot-approve.yml b/.github/workflows/dependabot-approve.yml
new file mode 100644
index 00000000..cc5e6d17
--- /dev/null
+++ b/.github/workflows/dependabot-approve.yml
@@ -0,0 +1,11 @@
+name: Dependabot auto approve
+on: pull_request
+
+jobs:
+ build:
+ 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 }}"