Skip to content

Commit 91125e7

Browse files
boomanaiden154kcloudy0717
authored andcommitted
[Github] Fix issue-write workflow after llvm#170216
This changed the name of one of the outputs that issue-write used to control whether or not it ran. This patch should fix that.
1 parent e982a8d commit 91125e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/issue-write.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
artifact-name: workflow-args
4242

4343
- name: 'Comment on PR'
44-
if: steps.download-artifact.outputs.artifact-id != ''
44+
if: steps.download-artifact.outputs.artifact-ids != ''
4545
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
4646
with:
4747
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -156,5 +156,5 @@ jobs:
156156
- name: Dump comments file
157157
if: >-
158158
always() &&
159-
steps.download-artifact.outputs.artifact-id != ''
159+
steps.download-artifact.outputs.artifact-ids != ''
160160
run: cat comments

0 commit comments

Comments
 (0)