generated from bitwarden/template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/bitwarden/dotnet-extensions
- Loading branch information
Showing
19 changed files
with
2,397 additions
and
841 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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 @@ | ||
* text=auto eol=lf |
Validating CODEOWNERS rules …
This file contains 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,11 @@ | ||
# Please sort into logical groups with comment headers. Sort groups in order of specificity. | ||
# For example, default owners should always be the first group. | ||
# Sort lines alphabetically within these groups to avoid accidentally adding duplicates. | ||
# | ||
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners | ||
|
||
# Default file owners | ||
* @bitwarden/tech-leads | ||
|
||
# DevOps for Actions and other workflow changes | ||
.github/workflows @bitwarden/dept-devops |
This file contains 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,14 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Feature Requests | ||
url: https://community.bitwarden.com/c/feature-requests/ | ||
about: Request new features using the Community Forums. Please search existing feature requests before making a new one. | ||
- name: Bitwarden Community Forums | ||
url: https://community.bitwarden.com | ||
about: Please visit the community forums for general community discussion, support and the development roadmap. | ||
- name: Customer Support | ||
url: https://bitwarden.com/contact/ | ||
about: Please contact our customer support for account issues and general customer support. | ||
- name: Security Issues | ||
url: https://hackerone.com/bitwarden | ||
about: We use HackerOne to manage security disclosures. |
This file contains 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,52 @@ | ||
## 🎟️ Tracking | ||
|
||
<!-- Paste the link to the Jira or GitHub issue or otherwise describe / point to where this change is coming from. --> | ||
|
||
## 🚧 Type of change | ||
|
||
<!-- Choose those applicable and remove the others. --> | ||
|
||
- 🐛 Bug fix | ||
- 🚀 New feature development | ||
- 🧹 Tech debt (refactoring, code cleanup, dependency upgrades, etc.) | ||
- 🤖 Build/deploy pipeline (DevOps) | ||
- 🎂 Other | ||
|
||
## 📔 Objective | ||
|
||
<!-- Describe what the purpose of this PR is, for example what bug you're fixing or new feature you're adding. --> | ||
|
||
## 📋 Code changes | ||
|
||
<!-- Explain the changes you've made to each file or major component. This should help the reviewer understand your changes. --> | ||
<!-- Also refer to any related changes or PRs in other repositories. --> | ||
|
||
- **file.ext:** Description of what was changed and why. | ||
|
||
## 📸 Screenshots | ||
|
||
<!-- Required for any UI changes; delete if not applicable. Use fixed width images for better display. --> | ||
|
||
## ⏰ Reminders before review | ||
|
||
- Contributor guidelines followed | ||
- All formatters and local linters executed and passed | ||
- Written new unit and / or integration tests where applicable | ||
- Protected functional changes with optionality (feature flags) | ||
- Used internationalization (i18n) for all UI strings | ||
- CI builds passed | ||
- Communicated to DevOps any deployment requirements | ||
- Updated any necessary documentation or informed the documentation team | ||
|
||
## 🦮 Reviewer guidelines | ||
|
||
<!-- Suggested interactions but feel free to use (or not) as you desire! --> | ||
|
||
- 👍 (`:+1:`) or similar for great changes | ||
- 📝 (`:memo:`) or ℹ️ (`:information_source:`) for notes or general info | ||
- ❓ (`:question:`) for questions | ||
- 🤔 (`:thinking:`) or 💭 (`:thought_balloon:`) for more open inquiry that's not quite a confirmed issue and could potentially benefit from discussion | ||
- 🎨 (`:art:`) for suggestions / improvements | ||
- ❌ (`:x:`) or ⚠️ (`:warning:`) for more significant problems or concerns needing attention | ||
- 🌱 (`:seedling:`) or ♻️ (`:recycle:`) for future improvements or indications of technical debt | ||
- ⛏ (`:pick:`) for minor or nitpick changes |
This file contains 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,37 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:base", | ||
":combinePatchMinorReleases", | ||
":dependencyDashboard", | ||
":maintainLockFilesWeekly", | ||
":pinAllExceptPeerDependencies", | ||
":prConcurrentLimit10", | ||
":rebaseStalePrs", | ||
"schedule:weekends", | ||
":separateMajorReleases" | ||
], | ||
"enabledManagers": ["cargo", "github-actions", "npm", "nuget"], | ||
"packageRules": [ | ||
{ | ||
"groupName": "cargo minor", | ||
"matchManagers": ["cargo"], | ||
"matchUpdateTypes": ["minor", "patch"] | ||
}, | ||
{ | ||
"groupName": "gh minor", | ||
"matchManagers": ["github-actions"], | ||
"matchUpdateTypes": ["minor", "patch"] | ||
}, | ||
{ | ||
"groupName": "npm minor", | ||
"matchManagers": ["npm"], | ||
"matchUpdateTypes": ["minor", "patch"] | ||
}, | ||
{ | ||
"groupName": "nuget minor", | ||
"matchManagers": ["nuget"], | ||
"matchUpdateTypes": ["minor", "patch"] | ||
} | ||
] | ||
} |
This file contains 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,19 @@ | ||
--- | ||
name: Enforce PR labels | ||
|
||
on: | ||
workflow_call: | ||
pull_request: | ||
types: [labeled, unlabeled, opened, reopened, synchronize] | ||
jobs: | ||
enforce-label: | ||
if: ${{ contains(github.event.*.labels.*.name, 'hold') || contains(github.event.*.labels.*.name, 'needs-qa') }} | ||
name: Enforce label | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- name: Check for label | ||
run: | | ||
echo "PRs with the hold or needs-qa labels cannot be merged" | ||
echo "### :x: PRs with the hold or needs-qa labels cannot be merged" >> $GITHUB_STEP_SUMMARY | ||
exit 1 |
This file contains 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,11 @@ | ||
--- | ||
name: Workflow linter | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- .github/workflows/** | ||
|
||
jobs: | ||
call-workflow: | ||
uses: bitwarden/gh-actions/.github/workflows/workflow-linter.yml@main |
Oops, something went wrong.