Add traceability callout#471
Check failed
There are 6 commits incorrectly signed off, the check did not pass.
Summary
| Sha | Message | Pass or fail reason | |
|---|---|---|---|
| 🟢 | 508f0f7 | docs(mirror node): add v0.147.0 release notes (#40... | Valid sign-off found |
| 🟢 | 4fae7e2 | Hiero CLI Docs (#393) | Valid sign-off found |
| 🔴 | d46aab0 | Added HSM Signing Tutorials (#395) | No sign-off matches the author or committer |
| 🟢 | 523c718 | v0.71.0 notes added + fixed typos and errors in mi... | Valid sign-off found |
| 🔴 | 013f22a | fix error in java code for contract create (#412) | Sign-off not found |
| 🟢 | 404cc43 | chore: example run status (#413) | Skipped: sign-off not required in bot commit |
| 🔴 | 6bbb98a | update supported HBAR staking wallets (#415) | Sign-off not found |
| 🟢 | 88d3071 | chore: example run status (#416) | Skipped: sign-off not required in bot commit |
| 🔴 | 7cfa944 | feat: improved exchange rate section (#418) | No sign-off matches the author or committer |
| 🟢 | 7db08ba | chore: example run status (#417) | Skipped: sign-off not required in bot commit |
| 🟢 | 8b175b4 | add HIP-1259 content (#422) | Valid sign-off found |
| 🟢 | 1f194e7 | chore: example run status (#419) | Skipped: sign-off not required in bot commit |
| 🟢 | 3c0b718 | add GTM tagId (#424) | Valid sign-off found |
| 🟢 | a387f89 | chore: example run status (#425) | Skipped: sign-off not required in bot commit |
| 🟢 | 2eb1539 | chore: update node tables (#426) | Skipped: sign-off not required in bot commit |
| 🟢 | eabad28 | additional docs for HIP-1259 (#427) | Valid sign-off found |
| 🟢 | 3d05c49 | chore: example run status (#428) | Skipped: sign-off not required in bot commit |
| 🟢 | cbf847f | added deprecation warning for AccountBalanceQuery ... | Valid sign-off found |
| 🟢 | 55a8557 | chore: example run status (#435) | Skipped: sign-off not required in bot commit |
| 🟢 | c123db1 | updated v0.70.1 release notes (#443) | Valid sign-off found |
| 🟢 | ea3fc4c | add apex hackathon promo (#447) | Valid sign-off found |
| 🟢 | 0d10ee7 | add hedera mcp server guide (#449) | Valid sign-off found |
| 🟢 | d175c01 | chore: example run status (#450) | Skipped: sign-off not required in bot commit |
| 🟢 | f4f4393 | added v0.71.2 release notes and upgraded status (#... | Valid sign-off found |
| 🟢 | bfc68f7 | added v0.71.3 and v0.149.0 node release notes (#45... | Valid sign-off found |
| 🔴 | 49f6743 | added v71 release highlights and date update (#458... | Sign-off not found |
| 🟢 | d3b8eab | updated custom skill.md for ai agents (#461) | Valid sign-off found |
| 🔴 | 31e3ff5 | chore: audit (#405) | No sign-off matches the author or committer |
| 🟢 | 1b68ca3 | docs: added local node deprecation notice (#463) | 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).
No sign-off matches the author or committer
A valid sign-off was found in the commit message, but it doesn't match neither the author nor the committer. Make sure that both the name and email in the sign-off line match the author or committer of the commit.
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~29 --signoff - Force push your changes to overwrite the branch:
git push --force-with-lease origin add-traceability-callout