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

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2019-06-21 11:50:28 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2019-10-28 20:09:31 +0300
commit8658b9f979fdb093764a9b44e319ffefb57f4873 (patch)
treea8dc999676424f53269d9bcf792c3e0a3aaec410 /.github
parent2e7365843e82969d2362f8ac21457aca2ae47a0f (diff)
Add Dependabot approve action workflow
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to '.github')
-rw-r--r--.github/dependabot-approve.workflow15
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/dependabot-approve.workflow b/.github/dependabot-approve.workflow
new file mode 100644
index 000000000..5ac34cd10
--- /dev/null
+++ b/.github/dependabot-approve.workflow
@@ -0,0 +1,15 @@
+workflow "Approve Dependabot PRs" {
+ resolves = ["hmarr/auto-approve-action@v1.0.0"]
+ on = "push"
+}
+
+action "Filters for GitHub Actions" {
+ uses = "actions/bin/filter@3c0b4f0e63ea54ea5df2914b4fabf383368cd0da"
+ args = "actor dependabot-preview"
+}
+
+action "hmarr/auto-approve-action@v1.0.0" {
+ uses = "hmarr/auto-approve-action@v1.0.0"
+ needs = ["Filters for GitHub Actions"]
+ secrets = ["GITHUB_TOKEN"]
+}