Skip to content

Commit aa2cc05

Browse files
committed
fixup
Signed-off-by: Frederic BIDON <fredbi@yahoo.com>
1 parent 84989c3 commit aa2cc05

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/pr-comment.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ on:
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:
@@ -99,7 +99,7 @@ jobs:
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

Comments
 (0)