From eec54ef46d24d4c34347c5adb9d855f9fba5c053 Mon Sep 17 00:00:00 2001 From: Eduardo Montoya Date: Tue, 19 Dec 2023 17:37:16 +0100 Subject: [PATCH] [github-actions] avoid `dependabot` pull requests in forks (#9728) 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 b4cb6e3b2..3c4905398 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"