diff --git a/.github/workflows/test-build-docker-image.yml b/.github/workflows/test-build-docker-image.yml index f10b03b3f7..047ae63f50 100644 --- a/.github/workflows/test-build-docker-image.yml +++ b/.github/workflows/test-build-docker-image.yml @@ -1,5 +1,8 @@ name: Test, build and push Docker Image +run-name: > + ${{ github.workflow }} with TED:${{ inputs.ted_tag }} + on: # This workflow will run everyday at 7:00AM, 1:00PM IST on weekdays schedule: @@ -34,6 +37,12 @@ jobs: tags: ${{ steps.setup.outputs.tags }} matrix: ${{ steps.setup.outputs.matrix }} steps: + - name: "Post inputs to run summary" + env: + INPUTS: "${{ toJSON(inputs) }}" + run: | + echo $'## Inputs\n```\n'"$INPUTS"$'\n```' > "$GITHUB_STEP_SUMMARY" + - name: Set tags and matrix runner id: setup run: |