Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating Pull request template. #304

Merged
merged 8 commits into from
Feb 12, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 16 additions & 3 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
## Related Tickets

Fixes #ISSUE_NUMBER

<!--
Please use this format link issue numbers: Fixes #123 / Closes #123
https://docs.github.com/en/free-pro-team@latest/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword
Use this format to link issue numbers: Fixes #123 / Closes #123
Reference: https://docs.github.com/en/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue-using-a-keyword
-->

## Description

<!--
This PR [adds/removes/fixes/replaces] the [feature/bug/etc].
Briefly explain what this PR does.
Example: This PR [adds/removes/fixes/replaces] the [feature/bug/etc].
-->

## Unexpected difficulties
Expand All @@ -24,6 +27,16 @@ Tell us about it, and what you did to overcome them!
Make sure you test your work before opening a PR.
Include the precise steps to reproduce in order to peer review your work.
Also include screenshots if you can so that reviewers can compare with a baseline.

Here is a small list of things you can do to check everything is working:
Install Dependencies:- `pnpm install`
Build Project:- `pnpm build`
Serving To Web:- `pnpm serve`
Run Tests:- `npm run test` or `pnpm run test`
Check Formatting:- `npm run format` or `pnpm run format`
Eslint Check:- `npm run lint:check` or `pnpm run lint:check`

Did you document your code?
-->

## Follow-up
Expand Down
Loading