Skip to content

Commit 596d4e4

Browse files
committed
ci: sync
1 parent 4545109 commit 596d4e4

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/guidelines-check.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,14 @@ jobs:
3939
4040
Use the gh cli to create comments on the files for the violations. Try to leave the comment on the exact line number. If you have a suggested fix include it in a suggestion code block.
4141
42+
Command should be like this
43+
```
44+
gh api \
45+
--method POST \
46+
-H "Accept: application/vnd.github+json" \
47+
-H "X-GitHub-Api-Version: 2022-11-28" \
48+
/repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/comments \
49+
-f 'body=[summary of issue]' -f 'commit_id=${{ github.event.pull_request.head.sha }}' -f 'path=[path-to-file]' -F "line=[line]" -f 'side=RIGHT'
50+
```
51+
4252
Only create comments for actual violations. If the code follows all guidelines, don't run any gh commands."

0 commit comments

Comments
 (0)