Sign-off commits#2694
Conversation
Add the `Signed-off-by` trailer to Git commits.
There was a problem hiding this comment.
Pull Request Overview
This PR adds the Signed-off-by trailer to Git commits by including the -s flag in git commit commands across GitHub workflow files. This ensures that all automated commits include proper sign-off information as required by many open source projects.
- Added
-sflag togit commitcommands in GitHub Actions workflows - Ensures automated commits include
Signed-off-bytrailers for compliance
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| .github/workflows/on-push-do-docs.yml | Added sign-off flag to documentation update commits |
| .github/workflows/after-release.yml | Added sign-off flag to changelog update commits |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #2694 +/- ##
=======================================
Coverage 96.23% 96.23%
=======================================
Files 311 311
Lines 7322 7322
Branches 1012 1012
=======================================
Hits 7046 7046
Misses 222 222
Partials 54 54
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Add the
Signed-off-bytrailer to Git commits.