From dd9dface6e9e5a7a3d04c20581dd047e6365be45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20G=C3=B6=C3=9Fler?= Date: Fri, 28 Feb 2025 13:55:28 +0100 Subject: [PATCH] fix: debounce workflow --- .github/workflows/publish-engines.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/publish-engines.yml b/.github/workflows/publish-engines.yml index c863f21a..7c819e95 100644 --- a/.github/workflows/publish-engines.yml +++ b/.github/workflows/publish-engines.yml @@ -20,6 +20,12 @@ jobs: id-token: write steps: + # Debounce so we won't run competing jobs if we merge multiple PRs in prisma-engines in quick succesion + - name: Debounce 1 minute + uses: zachary95/github-actions-debounce + with: + wait: 60 + - uses: actions/checkout@v4 with: token: ${{ secrets.PRISMA_BOT_TOKEN }}