2121 required : true
2222 pr_number :
2323 description : |
24- The pull request number, e.g. $ {{ github.event.pull_request.number }}
24+ The pull request number, e.g. {{ github.event.pull_request.number }}
2525 type : string
2626 required : true
2727 pr_sha :
9999 echo "proceed=true" >> "${GITHUB_OUTPUT}"
100100
101101 - name : Download message artifact
102- if : ${{ steps.check_pr.outputs.proceed == " true" }}
102+ if : ${{ steps.check_pr.outputs.proceed == ' true' }}
103103 uses : actions/download-artifact@v5
104104 with :
105105 run_id : " ${{ inputs.run_id }}"
@@ -109,7 +109,7 @@ jobs:
109109 github_token : ${{secrets.GITHUB_TOKEN}}
110110
111111 - name : Check message artifact size
112- if : ${{ steps.check_pr.outputs.proceed == " true" }}
112+ if : ${{ steps.check_pr.outputs.proceed == ' true' }}
113113 id : load_artifact
114114 run : |
115115 SIZE=$(wc -c "${MESSAGE_FILE}"
@@ -122,7 +122,7 @@ jobs:
122122 echo "message=$(cat ${MESSAGE_FILE})" >> "${GITHUB_OUTPUT}"
123123
124124 - name : Find previous PR comment
125- if : ${{ steps.check_pr.outputs.proceed == " true" }}
125+ if : ${{ steps.check_pr.outputs.proceed == ' true' }}
126126 uses : peter-evans/find-comment@v3
127127 id : find_comment
128128 with :
@@ -133,15 +133,15 @@ jobs:
133133 token : ${{ secrets.GITHUB_TOKEN }}
134134
135135 - name : Acquire write access to PR
136- if : ${{ steps.check_pr.outputs.proceed == " true" }}
136+ if : ${{ steps.check_pr.outputs.proceed == ' true' }}
137137 id : acquire_write_token
138138 uses : actions/create-github-app-token@v2
139139 with :
140140 app-id : ${{ secrets.CI_WORKFLOWS_PR_APP_ID }}
141141 private-key : ${{ secrets.CI_WORKFLOWS_PR_APP_PRIVATE_KEY }}
142142
143143 - name : Create or update PR comment
144- if : ${{ steps.check_pr.outputs.proceed == " true" }}
144+ if : ${{ steps.check_pr.outputs.proceed == ' true' }}
145145 uses : peter-evans/create-or-update-comment@v4
146146 with :
147147 issue-number : ${{ inputs.pr_number }}
0 commit comments