-
Notifications
You must be signed in to change notification settings - Fork 6
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 #25 from TeoDev1611/main
ci(.github): add the config for the github bots and create the issue …
- Loading branch information
Showing
4 changed files
with
42 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Moldy Mail | ||
url: mailto:[email protected] | ||
about: Please any support or offert to this email | ||
- name: Moldy Bug or security vulnerabilities | ||
url: https://discord.gg/2uwzhmJdfw | ||
about: Please report security vulnerabilities here. |
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,4 @@ | ||
helpr: | ||
opened: 'new-moldy-pr' | ||
merged: 'success-moldy-pr' | ||
rejected: 'error-moldy-pr' |
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 @@ | ||
team: cli-team |
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,29 @@ | ||
# Comment that will be sent if an issue is judged to be closed. | ||
comment: "This issue is closed because it does not meet our issue template. Please read it." | ||
issueConfigs: | ||
# There can be several configs for different kind of issues. | ||
- content: | ||
# Example 1: bug report | ||
- "Expected Behavior" | ||
- "Current Behavior" | ||
- "Steps to Reproduce" | ||
- "Detailed Description" | ||
- content: | ||
# Example 2: feature request | ||
- "Motivation / Use Case" | ||
- "Expected Behavior" | ||
- "Other Information" | ||
# Optional configuration: | ||
# | ||
# whether the keywords are case-insensitive | ||
# default value is false, which means keywords are case-sensitive | ||
caseInsensitive: false | ||
# the label that will be added when the bot close an issue | ||
# The bot will only add a label if this property is set. | ||
label: "closed by bot" | ||
# The bot will ignore any issues that are opened or reopened by the user names in exception | ||
exception: | ||
- "username1" | ||
- "username2" | ||
# The issue is judged to be legal if it includes all keywords from any of these two configs. | ||
# Or it will be closed by the app. |