From 5998495cf3de99e514e5d6dc1513b7e8e5ecfde8 Mon Sep 17 00:00:00 2001 From: Abhijeet <41686026+abhvsn@users.noreply.github.com> Date: Fri, 20 Sep 2024 12:12:10 +0530 Subject: [PATCH] chore: Modify inputs for TBP workflow_dispatch on pg branch (#36430) ## Description ## Automation /test sanity ### :mag: Cypress test results > [!CAUTION] > If you modify the content in this section, you are likely to disrupt the CI result for your PR. ## Communication Should the DevRel and Marketing teams inform users about this change? - [ ] Yes - [x] No ## Summary by CodeRabbit - **New Features** - Enhanced GitHub Actions workflow to support dynamic inputs for improved flexibility. - Introduced new parameters for `tags` and `ted_tag` to adapt to various configurations. --- .github/workflows/test-build-docker-image.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-build-docker-image.yml b/.github/workflows/test-build-docker-image.yml index f9eda86b85..71fe51a5cb 100644 --- a/.github/workflows/test-build-docker-image.yml +++ b/.github/workflows/test-build-docker-image.yml @@ -68,7 +68,8 @@ jobs: uses: benc-uk/workflow-dispatch@v1 with: workflow: test-build-docker-image.yml - inputs: '{ "ref": "refs/heads/pg"}' + inputs: '{ "tags": "${{needs.setup.outputs.tags}}", "ted_tag": "${{inputs.ted_tag}}" }' + ref: refs/heads/pg server-build: needs: [setup]