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
committerGitHub <noreply@github.com>2019-06-21 11:50:28 +0300
commitb7ece67d78a3f2616f7b8e406d9956c929f882fa (patch)
tree45e6943196e9d5fe44c7998fd032a1f15c26cbf7 /.github
parentabe6cc8c5f7f427c274e7ef64ec9cfc6f6a43984 (diff)
Add Dependabot approve action as main workflow
Diffstat (limited to '.github')
-rw-r--r--.github/main.workflow15
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/main.workflow b/.github/main.workflow
new file mode 100644
index 000000000..5ac34cd10
--- /dev/null
+++ b/.github/main.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"]
+}