From 94ce391d722065a0459eb24d78aa9efa2132cd51 Mon Sep 17 00:00:00 2001 From: Julien Maupetit Date: Thu, 5 Dec 2024 15:01:48 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A(project)=20rollback=20inefficient?= =?UTF-8?q?=20changes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Filtering on the actor (with this username) is not working... --- .github/workflows/api.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/api.yml b/.github/workflows/api.yml index 99645da3..34a8ac1b 100644 --- a/.github/workflows/api.yml +++ b/.github/workflows/api.yml @@ -217,9 +217,11 @@ jobs: }); }); - # Only when a PR is merged and not when this PR has been generated by a bot + # Only when a PR is merged + # + # FIXME and not when this PR has been generated by a bot to prevent CI inception update-bench-db: - if: ${{ github.event_name == 'push' && github.actor != 'github-actions' }} + if: ${{ github.event_name == 'push' }} needs: - build-api - bench-api