-
Notifications
You must be signed in to change notification settings - Fork 0
Conform to repo-template #4
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| ## Summary | ||
| <!-- What does this change do, and why? --> | ||
|
|
||
| ## Testing | ||
| <!-- How did you verify it? Commands, screenshots, manual steps. --> | ||
|
|
||
| ## Risk | ||
| <!-- Blast radius, rollback plan, anything reviewers should watch. --> | ||
|
|
||
| ## Checklist | ||
| - [ ] No secrets committed (`.env`, keys, service-account JSON) | ||
| - [ ] Docs/README updated if behavior changed | ||
| - [ ] Linked issue where relevant |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,38 @@ | ||
| # Dependencies | ||
| node_modules/ | ||
| .pnp/ | ||
| __pycache__/ | ||
| *.py[cod] | ||
| .venv/ | ||
| venv/ | ||
| env/ | ||
|
|
||
| # Build output | ||
| dist/ | ||
| build/ | ||
| .next/ | ||
| out/ | ||
| *.tsbuildinfo | ||
|
|
||
| # Environment & secrets (NEVER commit) | ||
| .env | ||
| .env.* | ||
| !.env.example | ||
| *.pem | ||
| *.key | ||
| service-account*.json | ||
| svc*.json | ||
| credentials.json | ||
|
|
||
| # Logs & caches | ||
| *.log | ||
| .cache/ | ||
| coverage/ | ||
| .pytest_cache/ | ||
|
|
||
| # OS / editor | ||
| .DS_Store | ||
| Thumbs.db | ||
| .idea/ | ||
| .vscode/* | ||
| !.vscode/extensions.json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| # Code of Conduct | ||
|
|
||
| ## Our standard | ||
| Method Communications projects are collaborative, professional spaces. Everyone who | ||
| participates — employees, contractors, and outside contributors — is expected to be | ||
| respectful, constructive, and inclusive. | ||
|
|
||
| ## Expected behavior | ||
| - Be respectful and considerate in language and actions. | ||
| - Give and accept constructive feedback gracefully. | ||
| - Assume good intent and focus on what is best for the project and the team. | ||
|
|
||
| ## Unacceptable behavior | ||
| - Harassment, discrimination, or personal attacks of any kind. | ||
| - Publishing others' private information without consent. | ||
| - Sustained disruption of discussions or reviews. | ||
|
|
||
| ## Reporting | ||
| Report conduct concerns privately to the Method engineering lead or your People team | ||
| contact. Reports are handled confidentially. | ||
|
|
||
| ## Scope | ||
| This applies within all Method-Communications repositories and related project spaces. | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| # Contributing | ||
|
|
||
| Thanks for contributing to a Method Communications project. | ||
|
|
||
| ## Branching | ||
| - Branch off `main`: `feature/<short-name>`, `fix/<short-name>`, or `chore/<short-name>`. | ||
| - Keep pull requests small and focused. | ||
|
|
||
| ## Pull requests | ||
| - `main` is protected — changes land via PR with at least one review, and code-owner | ||
| approval where a `CODEOWNERS` file applies. | ||
| - Fill in the summary, testing notes, and risk. Resolve all review conversations before merge. | ||
| - CI must be green where configured. | ||
|
|
||
| ## Commit messages | ||
| - Imperative mood, present tense: "add X", "fix Y". Reference issues where relevant (`#123`). | ||
|
|
||
| ## Security | ||
| - Never commit secrets (`.env`, keys, service-account JSON). See `SECURITY.md`. | ||
| - Report vulnerabilities privately per `SECURITY.md` — do not open a public issue. |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win
Add an actionable private reporting channel.
The scope includes outside contributors, but Lines 19-20 provide no email address, form, or link for reporting concerns. Add a monitored private channel or document how outside contributors can reach the named contacts.
🤖 Prompt for AI Agents