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 f6779ff commit 9ad18abCopy full SHA for 9ad18ab
.github/workflows/issue-write.yml
@@ -33,10 +33,12 @@ jobs:
33
artifact-name: workflow-args
34
35
- name: Unpack Artifact
36
+ if: steps.download-artifact.outputs.artifact-id != ''
37
run: |
38
unzip ${{ steps.download-artifact.outputs.filename }}
39
40
- name: 'Comment on PR'
41
42
uses: actions/github-script@v3
43
with:
44
github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -145,5 +147,7 @@ jobs:
145
147
});
146
148
149
- name: Dump comments file
- if: always()
150
+ if: >-
151
+ always() &&
152
+ steps.download-artifact.outputs.artifact-id != ''
153
run: cat comments
0 commit comments