Slack Title Target - No clickable link when executed through github actions #267
-
|
Hello, I hope someone can help me. Whenever I execute command to publish through Github Actions, there is no clickable link on the Slack Title Target. However, when I try to execute the command to publish in my terminal, it will have the clickable link that redirects me to my TestBeats report. Also, I don't know how I can change this "demo-run" into like for example "Staging - End to End Tests". I already saw this discussion - #247 but I still not understand. Sorry I'm new to Playwright and Testbeats. Please help? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
Hello @phsamson , Please refer the environment variables that need to be set for publishing test results to testbeats with custom details. Make sure your env variables injected to Github Action step. For example - name: Report Test Results
run: npx testbeats publish -c testbeats.config.json
env:
TEST_BEATS_API_KEY: ${{ secrets.TEST_BEATS_API_KEY }}
TEST_BEATS_RUN: 'Staging - E2E Tests' |
Beta Was this translation helpful? Give feedback.
-
yes |
Beta Was this translation helpful? Give feedback.



Hello @phsamson ,
Please refer the environment variables that need to be set for publishing test results to testbeats with custom details.
https://docs.testbeats.com/others/environment-variables.html#testbeats-portal
Make sure your env variables injected to Github Action step. For example