From c5bc676f84d95e0bc0b4e25d2f2002553f903844 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philippe=20No=C3=ABl?= <21990816+philippemnoel@users.noreply.github.com> Date: Thu, 12 Sep 2024 12:44:25 -0700 Subject: [PATCH] chore: Remove the need on token for workflow dispatch (#1652) --- .github/workflows/test-paradedb.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test-paradedb.yml b/.github/workflows/test-paradedb.yml index 25cb4656fd..c4f5f66163 100644 --- a/.github/workflows/test-paradedb.yml +++ b/.github/workflows/test-paradedb.yml @@ -122,16 +122,16 @@ jobs: exit 1 fi + # Only run this job on the `main` branch since it requires access to GitHub Secrets, which + # community contributors don't have access to. test-paradedb-helm-chart: - name: Test ParadeDB Helm Chart for PostgreSQL ${{ matrix.pg_version }} + name: Test ParadeDB Helm Chart runs-on: depot-ubuntu-latest-2 - strategy: - matrix: - pg_version: [16] + if: github.event.pull_request.draft == false && github.event.pull_request.base.ref == 'main' steps: - name: Trigger paradedb/charts Test Workflow - uses: multinarity/workflow-dispatch@master + uses: benc-uk/workflow-dispatch@v1.2.4 with: token: ${{ secrets.GHA_CREATE_RELEASE_PAT }} workflow: paradedb-test-eks.yml