From 3addbecbb88b132cb20b350c46b347e3797c97ce Mon Sep 17 00:00:00 2001 From: Mattia Panzeri <1754457+panz3r@users.noreply.github.com> Date: Tue, 13 May 2025 22:00:19 +0000 Subject: [PATCH 1/2] docs: update community contact email in `CODE_OF_CONDUCT.md` --- CODE_OF_CONDUCT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 329bd6c..dd718cf 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -60,7 +60,7 @@ representative at an online or offline event. Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at -community@forward.dev. +community@forwardsoftware.solutions. All complaints will be reviewed and investigated promptly and fairly. All community leaders are obligated to respect the privacy and security of the From 1f2e5c4b2d32f194cda89951ca5aab05e3e6db0f Mon Sep 17 00:00:00 2001 From: Mattia Panzeri <1754457+panz3r@users.noreply.github.com> Date: Tue, 13 May 2025 22:40:03 +0000 Subject: [PATCH 2/2] docs: add PR template for improved contribution guidelines --- .github/pull_request_template.md | 45 ++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..a2df2de --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,45 @@ +## Related Issue(s) + + + +## Motivation + + + +## Description of Changes + + + +* +* +* + +## How to Test + +1. **CI Checks:** Verify that all automated tests (`Vitest`) and build steps pass successfully on this PR. +2. **Local Verification (Optional):** + * Run `pnpm install` (or equivalent). + * Run the development server (`pnpm dev` or equivalent) for the library or examples to ensure Vite starts correctly. + * Run a build (`pnpm build` or equivalent) to ensure it completes successfully. + +## Checklist + + + +* [ ] My code follows the project's style guidelines +* [ ] I have added or updated tests to cover the changes +* [ ] I have updated relevant documentation +* [ ] All tests are passing locally +* [ ] CI checks are passing +* [ ] I have reviewed my own code and lock file changes +* [ ] I have checked for any potential security implications +* [ ] I have verified the changes work as expected + +## Notes for Reviewers + +