Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/xtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ on:
type: string
default: all
description: "The SDK to focus on (go, js, java, all)"
message:
required: false
type: string
default: ""
description: "Message to display in the workflow summary"
workflow_call:
inputs:
platform-ref:
Expand Down Expand Up @@ -64,6 +69,13 @@ jobs:
tag-list: ${{ steps.platform-version-info.outputs.tag-list }}
heads: ${{ steps.platform-version-info.outputs.heads }}
steps:
- name: Workflow message
if : ${{ inputs.message != '' }}
run: |-
echo "## Workflow message" >> $GITHUB_STEP_SUMMARY
echo "" >> $GITHUB_STEP_SUMMARY
echo "${{ inputs.message }}" >> $GITHUB_STEP_SUMMARY
echo "${{ inputs.message }}"
- name: Validate focus-sdk input
if : ${{ inputs.focus-sdk != '' }}
run: |-
Expand Down Expand Up @@ -130,6 +142,10 @@ jobs:
matrix:
platform-tag: ${{ fromJSON(needs.resolve-versions.outputs.tag-list) }}
steps:
- name: Workflow message
if : ${{ inputs.message != '' }}
run: |-
echo "${{ inputs.message }}"
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
repository: opentdf/tests
Expand Down