-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat bot account commit supports DCO signing
Signed-off-by: EdmondFrank <[email protected]>
- Loading branch information
1 parent
b5fb30b
commit dd9adfa
Showing
5 changed files
with
12 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -112,3 +112,8 @@ export NOTIFICATION_EXPLORE_URL=/explore | |
export NOTIFICATION_WECHAT_ACCOUNT_BIND_TEMPLATE_ID=OPENTM415757701 | ||
export NOTIFICATION_WECHAT_REPORT_GENERATE_TEMPLATE_ID=OPENTM407521893 | ||
export NOTIFICATION_WECHAT_REPORT_SUBSCRIPTION_UPDATE_TEMPLATE_ID=OPENTM412612104 | ||
|
||
# CI Bots | ||
export BOT_NAME=compass-bot | ||
export BOT_EMAIL=[email protected] | ||
|
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 |
---|---|---|
|
@@ -9,6 +9,8 @@ module Common | |
CELERY_SERVER = ENV.fetch('CELERY_SERVER') { 'http://localhost:8000' } | ||
SUPPORT_DOMAINS = ['gitee.com', 'github.com', 'raw.githubusercontent.com'] | ||
SUPPORT_DOMAIN_NAMES = ['gitee', 'github'] | ||
BOT_NAME = ENV.fetch('BOT_NAME') { 'compass-bot' } | ||
BOT_EMAIL = ENV.fetch('BOT_EMAIL') { '[email protected]' } | ||
GITEE_REPO = ENV.fetch('GITEE_WORKFLOW_REPO') | ||
GITHUB_REPO = ENV.fetch('GITHUB_WORKFLOW_REPO') | ||
META_REPO = ENV.fetch('WORKFLOW_REPO_NAME') { 'compass-projects-information' } | ||
|
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