Contributing Guide
February 23, 2026 ยท View on GitHub
Please refer to the detailed Contribution Guide in the WasmEdge/docs repo.
Commit Messages
In short, all commit messages should follow the standards:
You can sign-off your commit with Git -s option, or by appending the sign-off text to your commit message.
The sign-off must match the Git user and email associated with the commit.
A valid commit should look like this:
<type>: <short description of the change>
<optional detailed description>
Signed-off-by: Your Name <your.email@example.com>
See @commitlint/@config-conventional for allowed <type> values.
Example
docs: updates Contribution Guide
Signed-off-by: Alice Chen <alice.chen@example.com>
CI Checks
The CI workflows will only be approved to execute if:
- DCO check is passed.
- Commit messages follow the Conventional Commit standards.
- Pull Request title follows the Conventional Commit standards.
- Local tests have been run and evidence (screenshot or logs) is provided in the PR description.