Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-04-21 13:17:34 +0300
committerJoas Schilling <coding@schilljs.com>2020-05-08 19:05:31 +0300
commit2d2e32105366f3e439cd2b00c475bf16206abb4a (patch)
tree382417cde43a777e33f808b5720057e74c91fe7c /.github
parent54d1174b7564d114e9c834da19ed3535422bb73c (diff)
Auto approve dependabot
Signed-off-by: Joas Schilling <coding@schilljs.com>
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 000000000..cc5e6d17c
--- /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 }}"