docs(design): unified Go/Ginkgo E2E test suite #346
Check failed
There are 6 commits incorrectly signed off, the check did not pass.
Summary
| Sha | Message | Pass or fail reason | |
|---|---|---|---|
| 🔴 | 7be5884 | docs(design): proposed unified Go/Ginkgo E2E suite | Sign-off not found |
| 🔴 | e0a89e8 | docs(design): drop internal v4/v5 drafting artifac... | Sign-off not found |
| 🔴 | d91ce67 | feat(test/e2e): unified Go/Ginkgo end-to-end suite... | Sign-off not found |
| 🔴 | 4181cfd | test(e2e): add mongo hello probes to lifecycle dep... | Sign-off not found |
| 🔴 | b3a7001 | fix(e2e/tls): per-iteration attempt context in ren... | Sign-off not found |
| 🔴 | f23a316 | test(e2e/feature-gates): drop ChangeStreams covera... | Sign-off not found |
| 🟢 | ca58471 | test(e2e/status): verify published connection stri... | Valid sign-off found |
| 🟢 | fa15789 | docs(copilot): document Priority as a GitHub Proje... | Valid sign-off found |
| 🟢 | de201de | docs(copilot): require DCO sign-off on every commi... | Valid sign-off found |
| 🟢 | b7803d5 | fix(e2e): address Copilot review comments on PR #3... | Valid sign-off found |
Errors details
Sign-off not found
No sign-off was found in the commit message. This usually means that the author or committer of this commit failed to include a Signed-off-by line in the commit message. In some cases, this error can also be raised if the sign-off is not in the correct format.
To avoid having pull requests blocked in the future, always include a Signed-off-by: User1 <user1@email.test> line in every commit message. You can also do this automatically by using the -s flag (i.e., git commit -s).
How to fix missing or invalid sign-offs
Option 1: add remediation commit
Remediation commits are not allowed for this repository. For more details about how to enable them, please see the documentation.
Option 2: fix commits without sign-off
Rebase the branch
If you have a local git environment and meet the criteria below, one option is to rebase the branch and add your Signed-off-by lines in the new commits. Please note that if others have already begun work based upon the commits in this branch, this solution will rewrite history and may cause serious issues for collaborators (described in the git documentation under "The Perils of Rebasing").
Warning
You should only do this if:
- You are the only author of the commits in this branch
- You are absolutely certain nobody else is doing any work based upon this branch
- There are no empty commits in the branch
To add your Signed-off-by line to every commit in this branch:
- Ensure you have a local copy of your branch by checking out the pull request locally via command line.
- In your local branch, run:
git rebase HEAD~10 --signoff - Force push your changes to overwrite the branch:
git push --force-with-lease origin developer/e2e-suite