File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111concurrency :
1212 group : ${{ github.workflow }}-${{ github.ref }}
1313
14+ permissions : {}
15+
1416jobs :
1517 lint :
1618 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -56,10 +56,13 @@ jobs:
5656 - name : 💬 Post or update comment
5757 uses : actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9
5858 if : false
59+ env :
60+ PR_NUMBER : ${{ steps.pr.outputs.result }}
61+ COMMENT_BODY : ${{ steps.sizes.outputs.comment }}
5962 with :
6063 script : |
61- const prNumber = ${{ steps.pr.outputs.result }} ;
62- const commentBody = `${{ steps.sizes.outputs.comment }}` ;
64+ const prNumber = Number(process.env.PR_NUMBER) ;
65+ const commentBody = process.env.COMMENT_BODY ;
6366
6467 // Find existing comment
6568 const comments = await github.rest.issues.listComments({
You can’t perform that action at this time.
0 commit comments