From 6f18fa4362a5146ccf79bbedfb93b81b692da000 Mon Sep 17 00:00:00 2001 From: Julien Maupetit Date: Thu, 5 Dec 2024 14:36:45 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A(project)=20fix=20typo=20in=20API?= =?UTF-8?q?=20CI=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Strings expects single quotes... --- .github/workflows/api.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/api.yml b/.github/workflows/api.yml index 609c04b7..99645da3 100644 --- a/.github/workflows/api.yml +++ b/.github/workflows/api.yml @@ -219,7 +219,7 @@ jobs: # Only when a PR is merged and not when this PR has been generated by a bot update-bench-db: - if: ${{ github.event_name == 'push' && github.actor != "github-actions" }} + if: ${{ github.event_name == 'push' && github.actor != 'github-actions' }} needs: - build-api - bench-api