Improved table config to show DATA_RETENTION_TIME_IN_DAYS and MAX_DATA_EXTENSION_TIME_IN_DAYS only for non-external tables #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Trigger PR tests (Plugins) | |
on: | |
pull_request: | |
types: [auto_merge_enabled] | |
jobs: | |
trigger-pr-tests-plugins: | |
name: Trigger PR tests (Plugins) | |
runs-on: ubuntu-latest | |
steps: | |
- name: Call TeamCity API endpoint | |
run: | | |
curl \ | |
-X POST \ | |
-H 'Authorization: Bearer ${{ secrets.TEAMCITY_TRIGGER_TESTS_TOKEN }}' \ | |
-H 'Content-Type: application/json' \ | |
-d '{"branchName": "pull/${{ github.event.number }}", "buildType": {"id": "${{ vars.TEAMCITY_BUILD_ID_FOR_TESTING_PLUGIN_PR }}"}}' \ | |
${{ vars.TEAMCITY_API_URL }}/buildQueue |