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
docs: replace ASCII architecture diagram with Mermaid flowchart
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
require DCO sign-off for all commits in AGENTS.md
Signed-off-by: Carlos Sanchez <carlos@apache.org>
Copy file name to clipboardExpand all lines: AGENTS.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,16 @@ Common targets:
29
29
-`make vet` - Run Go vet
30
30
-`make lint` - Run linter
31
31
32
+
## Git Workflow
33
+
34
+
All commits must be signed off to certify the [Developer Certificate of Origin (DCO)](https://developercertificate.org/). Use the `-s` flag when committing:
35
+
36
+
```bash
37
+
git commit -s -m "feat: my change"
38
+
```
39
+
40
+
This adds a `Signed-off-by: Name <email>` trailer to the commit message. PRs with unsigned commits will fail the DCO check.
0 commit comments