You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Read the repository documentation structure and the issue description for issue #${{ github.event_name == 'workflow_dispatch' && inputs.issue_number || github.event.issue.number }}.
@@ -118,11 +122,58 @@ jobs:
118
122
7. Push your branch to origin using: git push -u origin <branch-name>
119
123
8. Post a comment to issue #${{ github.event_name == 'workflow_dispatch' && inputs.issue_number || github.event.issue.number }} with:
120
124
- Summary of changes made
125
+
- Highlight any actions attempted but did not have access to complete
121
126
- Link to create a PR using: https://github.com/${{ github.repository }}/compare/<branch-name>?expand=1
122
127
Use the gh CLI: gh issue comment ${{ github.event_name == 'workflow_dispatch' && inputs.issue_number || github.event.issue.number }} --body "<your comment>"
123
128
124
-
Focus only on documentation changes. Make app changes necessary to support the documentation such as adding visual components, icons, and structure.
125
-
Otherwise, do not modify application code, configuration files, or CI/CD workflows.
129
+
RESTRICTIONS:
130
+
- Only modify documentation files (.mdx, .md) in app/
131
+
- Only modify _meta.ts for navigation entries
132
+
- May add components to components/ for documentation display
133
+
- NEVER modify .github/, scripts/, or root config files (package.json, next.config.mjs, etc.)
134
+
- If the request is out of scope, comment explaining why
0 commit comments