From ce04570d11ea7bcf25317600c66b1e0b5045ae77 Mon Sep 17 00:00:00 2001 From: Remco Westerhoud Date: Fri, 28 Jul 2023 14:05:16 +0200 Subject: [PATCH] fix(ci): automerge camundait and backport PRs The dependabot/fetch-metadata action fails exceptionally if the PR was not created by dependabot. Therefore, we need to add this condition. (cherry picked from commit f9407466eba47d1ff5a72ddd6c721a47be2d2fa1) --- .github/workflows/build-test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 2fd43976..ab7e2ce2 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -170,6 +170,7 @@ jobs: steps: - uses: actions/checkout@v3 - id: metadata + if: github.actor == 'dependabot[bot]' name: Fetch dependency metadata uses: dependabot/fetch-metadata@v1.6.0 with: