We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da6020c commit 429125eCopy full SHA for 429125e
1 file changed
.github/workflows/ci.yaml
@@ -45,9 +45,10 @@ jobs:
45
46
- name: Delete old lint comments
47
if: github.event_name == 'pull_request' && steps.find-comment.outputs.comment-id != ''
48
- uses: peter-evans/delete-comment@v2
49
- with:
50
- comment-id: ${{ steps.find-comment.outputs.comment-id }}
+ env:
+ GH_TOKEN: ${{ github.token }}
+ run: |
51
+ gh api -X DELETE repos/${{ github.repository }}/issues/comments/${{ steps.find-comment.outputs.comment-id }}
52
53
- name: Run initial lint check
54
id: initial-lint
0 commit comments