From 2cb2adc2c9327e19cb6849ccc738ab155b414001 Mon Sep 17 00:00:00 2001 From: Eduardo Montoya Date: Tue, 19 Dec 2023 08:51:22 +0100 Subject: [PATCH] [github-actions] avoid `dependabot` pull requests in forks OpenThread forks typically inherit all commits in the repo, including the `dependabot` changes, so it's not needed to generate the same PRs in the forks as well. --- .github/dependabot.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b4cb6e3b232..3c49053984c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -29,6 +29,7 @@ version: 2 updates: - package-ecosystem: "github-actions" + if: github.repository == "openthread/openthread" directory: "/" schedule: interval: "weekly"