mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
* Added no codition section when aggregates are not available * Added feature to add aggregate condition and display it accordingly * Added feature to change the aggregateFx option * Added feature to update column option in the aggregate * Added feature to delete the aggregate * Disabling the group by according to valid condition but without tooltip * Added flow for deleting aggregate * feat: migration and configuration changes to support aggregation in tooljet database * added functionality for join table operations * Dropdown styles * Showing section for aggregate dropdown for joinTable operation * Added gap in multiple aggregate conditions * Added table_id in aggregate condition * Added custom placeholder Adjusted width of add condition of aggregate * Refactored logic for disable group_by field Added tooltip when group by is disabled * Updated aggregateFx to aggFx and groupBy to group_by * feat: group_by and aggregate option in list rows * added table name for aggregate dropdown value in joinTable operation * Get the group by options * value of aggregate column dropdown in join table operation * Added error and success message for aggregate deletion * Spacing adjustments * Clear the unwanted code * Updated the stucture of aggregate * Updated the structure of group_by * Fix: Query builder breaking due to undefined values * feat: logic used to aggregate on joins * Removing async * fix: app is crashing * feat: statement timeout at database level and user session level configuration can be done for ToolJet database * Added min and max width to dropdown in tooljetdb query manager * Added description * Adding width as 80 percentage when description is not avaialable * New Postgrest change for render related to Aggregate (#10175) * New Postgrest change for render related to Aggregate and group by functionality * correction in PGRST_DB_ENABLE_AGGREGATE value * Adding the env variable PGRST_DB_PRE_CONFIG * Adding the new postgrest related env changes to CE specific files * fix: updated env variable naming for aggregates * Showing description at the bottom for aggregate fx * Fixing typo error * Showing tick mark on selected item in dropdown when isMulti is false * Updated requested changes * Showing some description when option is not focused or selected * Updated the component name to AggregateFilter * fix: updated env variable to enable aggregation in tooljet database * refactor: new wrapper to create migration connection for tooljet database * fix: custom error message for aggregation errors has been handled for list_rows operation * fix: code review fixes * fix: aggregate function validation typo is updated * fix: empty validation for Select and Aggregate fields * postgrest changes for cypress * removed PGRST_DB_ENABLE_AGGREGATE --------- Co-authored-by: Ganesh Kumar <ganesh8056234@gmail.com> Co-authored-by: Adish M <44204658+adishM98@users.noreply.github.com> Co-authored-by: Adish M <adish.madhu@gmail.com>
360 lines
12 KiB
YAML
360 lines
12 KiB
YAML
name: Render review deploy
|
|
on:
|
|
pull_request_target:
|
|
types: [labeled, unlabeled, closed]
|
|
env:
|
|
PR_NUMBER: ${{ github.event.number }}
|
|
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
issues: write
|
|
|
|
jobs:
|
|
create-review-app:
|
|
if: ${{ github.event.action == 'labeled' && github.event.label.name == 'create-review-app' }}
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Create deployment
|
|
id: create-deployment
|
|
run: |
|
|
export RESPONSE=$(curl --request POST \
|
|
--url https://api.render.com/v1/services \
|
|
--header 'accept: application/json' \
|
|
--header 'content-type: application/json' \
|
|
--header 'Authorization: Bearer ${{ secrets.RENDER_API_KEY }}' \
|
|
--data '
|
|
{
|
|
"autoDeploy": "yes",
|
|
"branch": "${{ env.BRANCH_NAME }}",
|
|
"name": "ToolJet PR #${{ env.PR_NUMBER }}",
|
|
"notifyOnFail": "default",
|
|
"ownerId": "tea-caeo4bj19n072h3dddc0",
|
|
"repo": "${{ github.event.pull_request.head.repo.git_url }}",
|
|
"slug": "tooljet-pr-${{ env.PR_NUMBER }}",
|
|
"suspended": "not_suspended",
|
|
"suspenders": [],
|
|
"type": "web_service",
|
|
"envVars": [
|
|
{
|
|
"key": "PG_HOST",
|
|
"value": "${{ secrets.RENDER_PG_HOST }}"
|
|
},
|
|
{
|
|
"key": "PG_PORT",
|
|
"value": "5432"
|
|
},
|
|
{
|
|
"key": "PG_USER",
|
|
"value": "${{ secrets.RENDER_PG_USER }}"
|
|
},
|
|
{
|
|
"key": "PG_PASS",
|
|
"value": "${{ secrets.RENDER_PG_PASS }}"
|
|
},
|
|
{
|
|
"key": "PG_DB",
|
|
"value": "${{ env.PR_NUMBER }}"
|
|
},
|
|
{
|
|
"key": "ENABLE_TOOLJET_DB",
|
|
"value": "true"
|
|
},
|
|
{
|
|
"key": "TOOLJET_DB",
|
|
"value": "${{ env.PR_NUMBER }}"
|
|
},
|
|
{
|
|
"key": "TOOLJET_DB_HOST",
|
|
"value": "${{ secrets.RENDER_PG_HOST }}"
|
|
},
|
|
{
|
|
"key": "TOOLJET_DB_USER",
|
|
"value": "${{ secrets.RENDER_PG_USER }}"
|
|
},
|
|
{
|
|
"key": "TOOLJET_DB_PASS",
|
|
"value": "${{ secrets.RENDER_PG_PASS }}"
|
|
},
|
|
{
|
|
"key": "TOOLJET_DB_PORT",
|
|
"value": "5432"
|
|
},
|
|
{
|
|
"key": "TOOLJET_DB_STATEMENT_TIMEOUT",
|
|
"value": "60000"
|
|
},
|
|
{
|
|
"key": "TOOLJET_DB_RECONFIG",
|
|
"value": "true"
|
|
},
|
|
{
|
|
"key": "PGRST_DB_ENABLE_AGGREGATE",
|
|
"value": "true"
|
|
},
|
|
{
|
|
"key": "PGRST_DB_PRE_CONFIG",
|
|
"value": "postgrest.pre_config"
|
|
},
|
|
{
|
|
"key": "PGRST_DB_URI",
|
|
"value": "postgres://${{ secrets.RENDER_PG_USER }}:${{ secrets.RENDER_PG_PASS }}@${{ secrets.RENDER_PG_HOST }}/${{ env.PR_NUMBER }}"
|
|
},
|
|
{
|
|
"key": "PGRST_HOST",
|
|
"value": "127.0.0.1:3000"
|
|
},
|
|
{
|
|
"key": "PGRST_JWT_SECRET",
|
|
"value": "r9iMKoe5CRMgvJBBtp4HrqN7QiPpUToj"
|
|
},
|
|
{
|
|
"key": "PGRST_LOG_LEVEL",
|
|
"value": "info"
|
|
},
|
|
{
|
|
"key": "PORT",
|
|
"value": "80"
|
|
},
|
|
{
|
|
"key": "TOOLJET_HOST",
|
|
"value": "https://tooljet-pr-${{ env.PR_NUMBER }}.onrender.com"
|
|
},
|
|
{
|
|
"key": "DISABLE_TOOLJET_TELEMETRY",
|
|
"value": "true"
|
|
},
|
|
{
|
|
"key": "SMTP_ADDRESS",
|
|
"value": "smtp.mailtrap.io"
|
|
},
|
|
{
|
|
"key": "SMTP_DOMAIN",
|
|
"value": "smtp.mailtrap.io"
|
|
},
|
|
{
|
|
"key": "SMTP_PORT",
|
|
"value": "2525"
|
|
},
|
|
{
|
|
"key": "SMTP_USERNAME",
|
|
"value": "${{ secrets.RENDER_SMTP_USERNAME }}"
|
|
},
|
|
{
|
|
"key": "SMTP_PASSWORD",
|
|
"value": "${{ secrets.RENDER_SMTP_PASSWORD }}"
|
|
},
|
|
{
|
|
"key": "ENABLE_MARKETPLACE_FEATURE",
|
|
"value": "true"
|
|
},
|
|
{
|
|
"key": "TOOLJET_MARKETPLACE_URL",
|
|
"value": "${{ secrets.MARKETPLACE_BUCKET }}"
|
|
}
|
|
],
|
|
"serviceDetails": {
|
|
"disk": null,
|
|
"env": "docker",
|
|
"envSpecificDetails": {
|
|
"dockerCommand": "",
|
|
"dockerContext": "./",
|
|
"dockerfilePath": "./docker/preview.Dockerfile"
|
|
},
|
|
"healthCheckPath": "/api/health",
|
|
"numInstances": 1,
|
|
"openPorts": [{
|
|
"port": 80,
|
|
"protocol": "TCP"
|
|
}],
|
|
"plan": "starter",
|
|
"pullRequestPreviewsEnabled": "no",
|
|
"region": "oregon",
|
|
"url": "https://tooljet-pr-${{ env.PR_NUMBER }}.onrender.com"
|
|
}
|
|
}')
|
|
|
|
echo "response: $RESPONSE"
|
|
export SERVICE_ID=$(echo $RESPONSE | jq -r '.service.id')
|
|
echo "SERVICE_ID=$SERVICE_ID" >> $GITHUB_ENV
|
|
|
|
- name: Comment deployment URL
|
|
uses: actions/github-script@v5
|
|
with:
|
|
github-token: ${{secrets.GITHUB_TOKEN}}
|
|
script: |
|
|
github.rest.issues.createComment({
|
|
issue_number: context.issue.number,
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
body: 'Deployment: https://tooljet-pr-${{ env.PR_NUMBER }}.onrender.com \n Dashboard: https://dashboard.render.com/web/${{ env.SERVICE_ID }}'
|
|
})
|
|
|
|
- uses: actions/github-script@v6
|
|
with:
|
|
script: |
|
|
try {
|
|
await github.rest.issues.removeLabel({
|
|
issue_number: context.issue.number,
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
name: 'create-review-app'
|
|
})
|
|
} catch (e) {
|
|
console.log(e)
|
|
}
|
|
|
|
await github.rest.issues.addLabels({
|
|
issue_number: context.issue.number,
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
labels: ['active-review-app']
|
|
})
|
|
|
|
destroy-review-app:
|
|
if: ${{ (github.event.action == 'labeled' && github.event.label.name == 'destroy-review-app') || github.event.action == 'closed' }}
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Delete service
|
|
run: |
|
|
export SERVICE_ID=$(curl --request GET \
|
|
--url 'https://api.render.com/v1/services?name=ToolJet%20PR%20%23${{ env.PR_NUMBER }}&limit=1' \
|
|
--header 'accept: application/json' \
|
|
--header 'authorization: Bearer ${{ secrets.RENDER_API_KEY }}' | \
|
|
jq -r '.[0].service.id')
|
|
|
|
curl --request DELETE \
|
|
--url https://api.render.com/v1/services/$SERVICE_ID \
|
|
--header 'accept: application/json' \
|
|
--header 'authorization: Bearer ${{ secrets.RENDER_API_KEY }}'
|
|
|
|
- uses: actions/github-script@v6
|
|
with:
|
|
script: |
|
|
try {
|
|
await github.rest.issues.removeLabel({
|
|
issue_number: context.issue.number,
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
name: 'destroy-review-app'
|
|
})
|
|
} catch (e) {
|
|
console.log(e)
|
|
}
|
|
|
|
try {
|
|
await github.rest.issues.removeLabel({
|
|
issue_number: context.issue.number,
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
name: 'suspend-review-app'
|
|
})
|
|
} catch (e) {
|
|
console.log(e)
|
|
}
|
|
|
|
try {
|
|
await github.rest.issues.removeLabel({
|
|
issue_number: context.issue.number,
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
name: 'active-review-app'
|
|
})
|
|
} catch (e) {
|
|
console.log(e)
|
|
}
|
|
|
|
- name: Install PostgreSQL client
|
|
run: |
|
|
sudo apt update
|
|
sudo apt install postgresql-client -y
|
|
|
|
- name: Wait after installing PostgreSQL
|
|
run: sleep 25
|
|
|
|
- name: Drop PostgreSQL PR database
|
|
env:
|
|
PGHOST: ${{ secrets.RENDER_DS_PG_HOST }}
|
|
PGPORT: 5432
|
|
PGUSER: ${{ secrets.RENDER_DS_PG_USER }}
|
|
PGDATABASE: ${{ env.PR_NUMBER }}
|
|
run: |
|
|
if PGPASSWORD=${{ secrets.RENDER_DS_PG_PASS }} psql -h $PGHOST -p $PGPORT -U $PGUSER -lqt | cut -d \| -f 1 | grep -qw $PGDATABASE; then
|
|
echo "Database $PGDATABASE exists, deleting..."
|
|
PGPASSWORD=${{ secrets.RENDER_DS_PG_PASS }} psql -h $PGHOST -p $PGPORT -U $PGUSER -d postgres -c "drop database \"$PGDATABASE\" ;"
|
|
else
|
|
echo "Database $PGDATABASE does not exist."
|
|
fi
|
|
|
|
suspend-review-app:
|
|
if: ${{ github.event.action == 'labeled' && github.event.label.name == 'suspend-review-app' }}
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Suspend service
|
|
run: |
|
|
export SERVICE_ID=$(curl --request GET \
|
|
--url 'https://api.render.com/v1/services?name=ToolJet%20PR%20%23${{ env.PR_NUMBER }}&limit=1' \
|
|
--header 'accept: application/json' \
|
|
--header 'authorization: Bearer ${{ secrets.RENDER_API_KEY }}' | \
|
|
jq -r '.[0].service.id')
|
|
|
|
curl --request POST \
|
|
--url https://api.render.com/v1/services/$SERVICE_ID/suspend \
|
|
--header 'accept: application/json' \
|
|
--header 'authorization: Bearer ${{ secrets.RENDER_API_KEY }}'
|
|
|
|
- uses: actions/github-script@v6
|
|
with:
|
|
script: |
|
|
try {
|
|
await github.rest.issues.removeLabel({
|
|
issue_number: context.issue.number,
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
name: 'active-review-app'
|
|
})
|
|
} catch (e) {
|
|
console.log(e)
|
|
}
|
|
|
|
resume-review-app:
|
|
if: ${{ github.event.action == 'unlabeled' && github.event.label.name == 'suspend-review-app' }}
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Resume service
|
|
run: |
|
|
export SERVICE_ID=$(curl --request GET \
|
|
--url 'https://api.render.com/v1/services?name=ToolJet%20PR%20%23${{ env.PR_NUMBER }}&limit=1' \
|
|
--header 'accept: application/json' \
|
|
--header 'authorization: Bearer ${{ secrets.RENDER_API_KEY }}' | \
|
|
jq -r '.[0].service.id')
|
|
|
|
curl --request POST \
|
|
--url https://api.render.com/v1/services/$SERVICE_ID/resume \
|
|
--header 'accept: application/json' \
|
|
--header 'authorization: Bearer ${{ secrets.RENDER_API_KEY }}'
|
|
|
|
- uses: actions/github-script@v6
|
|
with:
|
|
script: |
|
|
await github.rest.issues.addLabels({
|
|
issue_number: context.issue.number,
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
labels: ['active-review-app']
|
|
})
|
|
|
|
try {
|
|
await github.rest.issues.removeLabel({
|
|
issue_number: context.issue.number,
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
name: 'suspend-review-app'
|
|
})
|
|
} catch (e) {
|
|
console.log(e)
|
|
}
|