Hi All,
I have a GH action which posts the message to teams channel.
- name: Send Notification to Microsoft Teams
uses: aliencube/microsoft-teams-actions@v0.8.0
with:
webhook_uri: "${{ secrets.MICROSOFT_TEAMS_WEBHOOK_URL_DEMO }}"
title: "UI Automation Reports"
summary: "Passed-${{ env.passed }} | Failed-${{ env.failed }} | Broken-${{ env.broken }} | Total-${{ env.total }} | Pass Percentage-${{ env.percent }}%"
text: |
\
Report Summary:\
\
Passed - ${{ env.passed }} \
Failed - ${{ env.failed }} \
Broken - ${{ env.broken }} \
Total - ${{ env.total }} \
Pass Percentage - ${{ env.percent }}%
which looks like this in teams --

Using power automate, I am using trigger "sending email whenever a channel message is added to teams".
So when I am using dynamic content --> message.summary, I am getting those details in email as mentioned in the summary tag in above gh action.
But how shall I get the details of text attribute mentioned in above gh action in my email. Using the dynamic content - message.bodycontent do not works.