diff --git a/.github/workflows/tag-docs-team.yaml b/.github/workflows/tag-docs-team.yaml index c9b7ccd31b..6f69e42b57 100644 --- a/.github/workflows/tag-docs-team.yaml +++ b/.github/workflows/tag-docs-team.yaml @@ -26,11 +26,14 @@ jobs: with: comment-tag: docs-team-comment message: | - ${{ steps.changed-files.outputs.enterprise_added_files != '' && - 'Files have been added to `Enterprise` train:\n\n ${{ steps.changed-files.outputs.enterprise_added_files.join("\n") }}' }} - ${{ steps.changed-files.outputs.stable_added_files != '' && 'added stable @stavros-k' || '' }} - ${{ steps.changed-files.outputs.test_added_files != '' && 'added test @stavros-k' || '' }} - - ${{ steps.changed-files.outputs.enterprise_all_modified_files != '' && 'changed enterprise @stavros-k' || '' }} - ${{ steps.changed-files.outputs.stable_all_modified_files != '' && 'chagned stable @stavros-k' || '' }} - ${{ steps.changed-files.outputs.test_all_modified_files != '' && 'changed test @stavros-k' || '' }} + ${{ steps.changed-files.outputs.enterprise_added_files != '' && 'Files have been added to `Enterprise` train:\n\n ${{ steps.changed-files.outputs.enterprise_added_files.join("\n") }}' }} + + ${{ steps.changed-files.outputs.enterprise_modified_files != '' && 'Files have been modified in `Enterprise` train:\n\n ${{ steps.changed-files.outputs.enterprise_modified_files.join("\n") }}' }} + + ${{ steps.changed-files.outputs.stable_added_files != '' && 'Files have been added to `Stable` train:\n\n ${{ steps.changed-files.outputs.stable_added_files.join("\n") }}' }} + + ${{ steps.changed-files.outputs.stable_modified_files != '' && 'Files have been modified in `Stable` train:\n\n ${{ steps.changed-files.outputs.stable_modified_files.join("\n") }}' }} + + ${{ steps.changed-files.outputs.test_added_files != '' && 'Files have been added to `Test` train:\n\n ${{ steps.changed-files.outputs.test_added_files.join("\n") }}' }} + + ${{ steps.changed-files.outputs.test_modified_files != '' && 'Files have been modified in `Test` train:\n\n ${{ steps.changed-files.outputs.test_modified_files.join("\n") }}' }}