From f9407466eba47d1ff5a72ddd6c721a47be2d2fa1 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. --- .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 97e6e396..e0b20f1c 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: