From 32f056c199b5f64c07a23d08cb965538252b1a48 Mon Sep 17 00:00:00 2001 From: "Joshua M. Clulow" Date: Tue, 14 Jun 2022 01:28:49 +1000 Subject: [PATCH] buildomat: allow dependabot/renovate jobs without manual approval (#371) --- .github/buildomat/config.toml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/buildomat/config.toml b/.github/buildomat/config.toml index 703e7ae82..ca7a5d600 100644 --- a/.github/buildomat/config.toml +++ b/.github/buildomat/config.toml @@ -3,3 +3,18 @@ # the buildomat integration to create check suites. # enable = true + +# +# Require approval for pull requests made by users outside our organisation. +# +org_only = true + +# +# We accept pull requests from several automated services that are outside the +# organisation. Allow jobs from those sources to proceed without manual +# approval: +# +allow_users = [ + "dependabot[bot]", + "renovate[bot]", +]