This repository has been archived by the owner on Oct 9, 2024. It is now read-only.
generated from ubiquity/ts-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 pull request #15 from ubiquibot/development
Merge develop into main
- Loading branch information
Showing
12 changed files
with
279 additions
and
239 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Changelog | ||
|
||
## 1.0.0 (2024-05-03) | ||
|
||
|
||
### ⚠ BREAKING CHANGES | ||
|
||
* added plugins type | ||
* updated the config to match the new version | ||
* enable on browser env ([#7](https://github.com/ubiquibot/configuration/issues/7)) | ||
|
||
### Features | ||
|
||
* added jest testing and action ([cdca8ed](https://github.com/ubiquibot/configuration/commit/cdca8edfd257face4117837b4620253296c7f431)) | ||
* added plugins type ([02aa283](https://github.com/ubiquibot/configuration/commit/02aa28386e60b1c8190a35545120d3fc088de2e7)) | ||
* enable on browser env ([#7](https://github.com/ubiquibot/configuration/issues/7)) ([709dd26](https://github.com/ubiquibot/configuration/commit/709dd2621eaa556460a2add1f4f4e1540a6303a6)) | ||
* package creation for ubiquibot config ([7afa962](https://github.com/ubiquibot/configuration/commit/7afa9622cd8c30c27405104086af5d8ad05f58be)) | ||
* updated the config to match the new version ([0f777c8](https://github.com/ubiquibot/configuration/commit/0f777c8710919abb3439f0b280280705bb21e93d)) |
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 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
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,2 +1 @@ | ||
export * from "./ajv"; | ||
export * from "./generate-configuration"; |
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,4 +1,66 @@ | ||
price-multiplier: 1.5 | ||
command-settings: | ||
- name: start | ||
enabled: false | ||
incentives: | ||
enabled: true | ||
contentEvaluator: | ||
enabled: true | ||
userExtractor: | ||
enabled: true | ||
redeemTask: true | ||
dataPurge: | ||
enabled: true | ||
formattingEvaluator: | ||
enabled: true | ||
scores: | ||
br: 0 | ||
code: 1 | ||
p: 1 | ||
em: 0 | ||
img: 0 | ||
strong: 0 | ||
blockquote: 0 | ||
h1: 1 | ||
h2: 1 | ||
h3: 1 | ||
h4: 1 | ||
h5: 1 | ||
h6: 1 | ||
a: 1 | ||
li: 1 | ||
td: 1 | ||
hr: 0 | ||
multipliers: | ||
- type: [ ISSUE, ISSUER, SPECIFICATION ] | ||
formattingMultiplier: 1 | ||
wordValue: 0.1 | ||
- type: [ ISSUE, ISSUER, COMMENTED ] | ||
formattingMultiplier: 1 | ||
wordValue: 0.2 | ||
- type: [ ISSUE, ASSIGNEE, COMMENTED ] | ||
formattingMultiplier: 0 | ||
wordValue: 0 | ||
- type: [ ISSUE, COLLABORATOR, COMMENTED ] | ||
formattingMultiplier: 1 | ||
wordValue: 0.1 | ||
- type: [ ISSUE, CONTRIBUTOR, COMMENTED ] | ||
formattingMultiplier: 0.25 | ||
wordValue: 0.1 | ||
- type: [ REVIEW, ISSUER, TASK ] | ||
formattingMultiplier: 0 | ||
wordValue: 0 | ||
- type: [ REVIEW, ISSUER, COMMENTED ] | ||
formattingMultiplier: 2 | ||
wordValue: 0.2 | ||
- type: [ REVIEW, ASSIGNEE, COMMENTED ] | ||
formattingMultiplier: 1 | ||
wordValue: 0.1 | ||
- type: [ REVIEW, COLLABORATOR, COMMENTED ] | ||
formattingMultiplier: 1 | ||
wordValue: 0.1 | ||
- type: [ REVIEW, CONTRIBUTOR, COMMENTED ] | ||
formattingMultiplier: 0.25 | ||
wordValue: 0.1 | ||
permitGeneration: | ||
enabled: true | ||
githubComment: | ||
enabled: true | ||
post: true | ||
debug: false |
Oops, something went wrong.