diff --git a/.github/workflows/client-build.yml b/.github/workflows/client-build.yml index 1d10ffa90d..8f9d3c74da 100644 --- a/.github/workflows/client-build.yml +++ b/.github/workflows/client-build.yml @@ -63,8 +63,8 @@ jobs: run: | PGPASSWORD='${{secrets.APPSMITH_PERFORMANCE_DB_PASSWORD}}' psql -h '${{secrets.APPSMITH_PERFORMANCE_DB_HOST}}' \ -U aforce_admin -d perf-infra -c \ - "INSERT INTO public.run_meta (gh_run_id, gh_run_attempt, pull_request_id, is_active) - VALUES ('${{github.run_id}}', '${{github.run_attempt}}', '${{ inputs.pr }}', FALSE)" + "INSERT INTO public.run_meta (repo, gh_run_id, gh_run_attempt, is_active) + VALUES ('${{github.repository}}',${{github.run_id}}', '${{github.run_attempt}}', FALSE)" - name: Figure out the PR number