-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathn
More file actions
24 lines (17 loc) · 1.02 KB
/
Copy pathn
File metadata and controls
24 lines (17 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
## Security Checklist
Before opening a pull request, please ensure:
* Your local repository is up-to-date: `git status`
* Your changes are staged: `git diff --staged`
* You haven't accidentally committed secrets: `grep -rnE 'your_secret_key_here'`
For more information on security, please refer to our [SECURITY.md](SECURITY.md).
## Before Opening a Pull Request
1. Make sure you have followed the security checklist above.
2. Ensure that your code adheres to our coding standards and guidelines.
3. Write a clear and concise commit message that describes the changes you have made.
4. Include relevant tests and documentation for your changes.
5. Verify that your changes do not introduce any security vulnerabilities.
## After Opening a Pull Request
1. Respond to any feedback or comments from reviewers in a timely manner.
2. Make any necessary changes to address reviewer feedback.
3. Verify that your changes do not introduce any security vulnerabilities.
4. Merge the pull request once all changes have been reviewed and approved.