We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bca7f17 commit 2fd85d0Copy full SHA for 2fd85d0
.github/workflows/runAqa.yml
@@ -51,10 +51,12 @@ jobs:
51
- name: Create error comment
52
if: failure()
53
uses: actions/github-script@v8
54
+ env:
55
+ LOG_OUTPUT: ${{ steps.output_log.outputs.log }}
56
with:
57
github-token: ${{secrets.GITHUB_TOKEN}}
58
script: |
- const log_content = `${{ steps.output_log.outputs.log }}`;
59
+ const log_content = process.env.LOG_OUTPUT;
60
const comment_body = [
61
`@${{ github.actor }}`,
62
'```',
0 commit comments