Skip to content

Commit fe129f5

Browse files
committed
Add repo-hardening foundation
- MIT LICENSE - CODEOWNERS pointing at @adibhanna for all paths - SECURITY.md with private vulnerability reporting guidance - Dependabot config for npm and github-actions updates
1 parent 77ff23a commit fe129f5

4 files changed

Lines changed: 65 additions & 0 deletions

File tree

.github/CODEOWNERS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Every change requires review from a listed code owner.
2+
# See https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-security/customizing-your-repository/about-code-owners
3+
* @adibhanna

.github/dependabot.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: npm
4+
directory: /
5+
schedule:
6+
interval: weekly
7+
open-pull-requests-limit: 10
8+
labels:
9+
- dependencies
10+
- npm
11+
12+
- package-ecosystem: github-actions
13+
directory: /
14+
schedule:
15+
interval: weekly
16+
open-pull-requests-limit: 5
17+
labels:
18+
- dependencies
19+
- github-actions

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2026 Adib Hanna and ZenNotes contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

SECURITY.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Security Policy
2+
3+
## Supported Versions
4+
5+
We support the latest published release of ZenNotes. Security fixes land on
6+
`main` first and roll into the next release.
7+
8+
## Reporting a Vulnerability
9+
10+
**Please do not open a public GitHub issue for security vulnerabilities.**
11+
12+
Report issues privately through GitHub's [private vulnerability reporting
13+
form](https://github.com/ZenNotes/zennotes/security/advisories/new) for this
14+
repository. Include:
15+
16+
- A description of the issue and the impact
17+
- Steps to reproduce or a proof of concept
18+
- Affected versions, if known
19+
- Any suggested remediation
20+
21+
We aim to acknowledge reports within 3 business days and to ship a fix or
22+
publish a coordinated advisory within 30 days of confirmation.

0 commit comments

Comments
 (0)