forked from EddieHubCommunity/BioDrop
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'EddieHubCommunity:main' into main
- Loading branch information
Showing
686 changed files
with
21,246 additions
and
11,578 deletions.
There are no files selected for viewing
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
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
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
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Question? | ||
url: http://discord.eddiehub.org | ||
about: Feel free to ask your question on our Discord channel. | ||
url: https://www.biodrop.io/docs/faqs | ||
about: If your question is not covered by the FAQs, please ask your question in our GitHub Discussions. |
This file was deleted.
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 |
---|---|---|
@@ -1,31 +1,55 @@ | ||
name: 💡 General Feature Request | ||
description: Have a new idea/feature for BioDrop? Please suggest! | ||
description: Have a new idea/feature for BioDrop? Let us know... | ||
title: "[FEATURE] <description>" | ||
labels: ["⭐ goal: addition", "🚦 status: awaiting triage"] | ||
body: | ||
- type: checkboxes | ||
id: duplicates | ||
attributes: | ||
label: Is this a unique feature? | ||
description: Increase the chances of your issue being accepted by making sure it has not been raised before. | ||
options: | ||
- label: I have checked "open" AND "closed" issues and this is not a duplicate | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Is your feature request related to a problem/unavailable functionality? Please describe. | ||
description: A clear and concise description of what the problem is (for example "I'm always frustrated when [...]"). | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: Description | ||
description: A brief description of the enhancement you propose, also include what you tried and what worked. | ||
label: Proposed Solution | ||
description: A clear description of the enhancement you propose. Please include relevant information and resources (for example another project's implementation of this feature). | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: screenshots | ||
attributes: | ||
label: Screenshots | ||
description: Please add screenshots if applicable | ||
description: Please add screenshots of the before and/or after the proposed changes. | ||
validations: | ||
required: false | ||
- type: dropdown | ||
id: assignee | ||
attributes: | ||
label: Do you want to work on this issue? | ||
multiple: false | ||
options: | ||
- "No" | ||
- "Yes" | ||
default: 0 | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: extrainfo | ||
attributes: | ||
label: Additional information | ||
description: Is there anything else we should know about this idea? | ||
label: If "yes" to above, please explain how you would technically implement this | ||
description: For example reference any existing code | ||
validations: | ||
required: false | ||
- type: markdown | ||
attributes: | ||
value: | | ||
You can also join our Discord community [here](http://discord.eddiehub.org) | ||
Feel free to check out other cool repositories of the EddieHub Community [here](https://github.com/EddieHubCommunity) |
This file was deleted.
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 |
---|---|---|
@@ -1,20 +1,23 @@ | ||
'✍ chore: profile': | ||
- 'data/**' | ||
"✍ chore: profile": | ||
- "data/**" | ||
|
||
"invalid": | ||
- "data/**" | ||
|
||
tests: | ||
- 'tests/**' | ||
- "tests/**" | ||
|
||
storybook: | ||
- 'stories/**' | ||
- "stories/**" | ||
|
||
dependencies: | ||
- 'package.*' | ||
- "package.*" | ||
|
||
'CI/CD': | ||
- '.github/**' | ||
"CI/CD": | ||
- ".github/**" | ||
|
||
'📖 docs': | ||
- 'pages/docs/**' | ||
"📖 docs": | ||
- "pages/docs/**" | ||
|
||
'models': | ||
- 'models/**' | ||
"models": | ||
- "models/**" |
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
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 |
---|---|---|
@@ -1,36 +1,42 @@ | ||
let fileNames = process.env.FILENAMES.split(' '); | ||
const baseFileNames = process.env.BASE_FILENAMES.split(' '); | ||
const user = process.env.USERNAME; | ||
let exitCode = 0; | ||
|
||
// Remove files not changed in this PR from list | ||
if (baseFileNames.length > 0) { | ||
fileNames = fileNames.filter(file => !baseFileNames.includes(file)); | ||
} | ||
|
||
if (fileNames.length > 0) { | ||
fileNames.forEach(file => { | ||
const splitFile = file.split('/'); | ||
const userPart = splitFile[1]; | ||
// Files not in data directory produce a warning | ||
if(splitFile[0] !== 'data') { | ||
console.log(`::warning ::${file} included in Pull Request with profile changes but not in data directory.`); | ||
return; | ||
} | ||
if (!file.endsWith('.json')){ | ||
exitCode = 1; | ||
console.log(`::error ::Filename ${file} does not end with '.json'`); | ||
return; | ||
} | ||
if ((userPart !== user ) && (userPart !== `${user}.json`)){ | ||
// Allow for testimonials | ||
if((splitFile.length == 4) && (splitFile[2] === 'testimonials') && (splitFile[3] === `${user}.json`)) { | ||
return; | ||
} | ||
exitCode = 1; | ||
console.log(`::error ::Filename ${file} does not match user ${user}`); | ||
} | ||
}); | ||
} | ||
|
||
process.exit(exitCode); | ||
let fileNames = process.env.FILENAMES.split(" "); | ||
const baseFileNames = process.env.BASE_FILENAMES.split(" "); | ||
const user = process.env.USERNAME; | ||
let exitCode = 0; | ||
|
||
// Remove files not changed in this PR from list | ||
if (baseFileNames.length > 0) { | ||
fileNames = fileNames.filter((file) => !baseFileNames.includes(file)); | ||
} | ||
|
||
if (fileNames.length > 0) { | ||
fileNames.forEach((file) => { | ||
const splitFile = file.split("/"); | ||
const userPart = splitFile[1]; | ||
// Files not in data directory produce a warning | ||
if (splitFile[0] !== "data") { | ||
console.log( | ||
`::warning ::${file} included in Pull Request with profile changes but not in data directory.`, | ||
); | ||
return; | ||
} | ||
if (!file.endsWith(".json")) { | ||
exitCode = 1; | ||
console.log(`::error ::Filename ${file} does not end with '.json'`); | ||
return; | ||
} | ||
if (userPart !== user && userPart !== `${user}.json`) { | ||
// Allow for testimonials | ||
if ( | ||
splitFile.length == 4 && | ||
splitFile[2] === "testimonials" && | ||
splitFile[3] === `${user}.json` | ||
) { | ||
return; | ||
} | ||
exitCode = 1; | ||
console.log(`::error ::Filename ${file} does not match user ${user}`); | ||
} | ||
}); | ||
} | ||
|
||
process.exit(exitCode); |
Oops, something went wrong.