summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2025-08-12 13:36:56 -0400
committerDax Raad <[email protected]>2025-08-12 13:39:53 -0400
commit342f4239e425f45dea8fa139d91d3263c9af3e88 (patch)
tree14e79487e21f68fd6c7e12cc6d216712a0e3244b /.github/workflows
parent5141fe8d7d7c6bd9630b9c2468aceaf807765fb6 (diff)
downloadopencode-342f4239e425f45dea8fa139d91d3263c9af3e88.tar.gz
opencode-342f4239e425f45dea8fa139d91d3263c9af3e88.zip
ci: softer language
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/guidelines-check.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/guidelines-check.yml b/.github/workflows/guidelines-check.yml
index c041f4c17..cb3c9517e 100644
--- a/.github/workflows/guidelines-check.yml
+++ b/.github/workflows/guidelines-check.yml
@@ -40,13 +40,13 @@ jobs:
For each violation you find, create a file comment using the gh CLI. Use this exact format for each violation:
\`\`\`bash
- gh pr review ${{ github.event.pull_request.number }} --comment-body 'This violates the AGENTS.md guideline: [specific rule]. Consider: [suggestion]' --file 'path/to/file.ts' --line [line_number]
+ gh pr review ${{ github.event.pull_request.number }} --comment-body 'This may be a conflict with AGENTS.md guidelines: [specific rule]. Consider: [suggestion]' --file 'path/to/file.ts' --line [line_number]
\`\`\`
When possible, also submit code change suggestions using:
\`\`\`bash
- gh pr review ${{ github.event.pull_request.number }} --comment-body 'Suggested fix for AGENTS.md guideline violation:' --file 'path/to/file.ts' --line [line_number] --body '```suggestion
+ gh pr review ${{ github.event.pull_request.number }} --comment-body 'Suggested fix for AGENTS.md guideline:' --file 'path/to/file.ts' --line [line_number] --body '```suggestion
[corrected code here]
```'
\`\`\`