Rewrite and expand auto comments

7543a24ca720e7ef13484400ffcdbad1d08b1c44

Wolfsblvt <wolfsblvt@gmail.com>

2 files changed, +51 -16Showing whitespace changes
.github/issues-auto-comments.yml+24 -13
@@ -1,5 +1,5 @@
1comment:1comment:
2 footer: |2 footer: >
3 ---3 ---
4 > I am a bot, and this is an automated message πŸ€–4 > I am a bot, and this is an automated message πŸ€–
5labels:5labels:
@@ -8,7 +8,7 @@ labels:
8 issue:8 issue:
9 action: close9 action: close
10 body: >10 body: >
11 Hello @{{ issue.user.login }} your ticket has been marked as invalid.11 Hello @{{ issue.user.login }}. Your ticket has been marked as invalid.
12 Please ensure you follow the issue template, provide all requested info,12 Please ensure you follow the issue template, provide all requested info,
13 and be sure to check the docs + previous issues prior to raising tickets.13 and be sure to check the docs + previous issues prior to raising tickets.
1414
@@ -16,31 +16,42 @@ labels:
16 labeled:16 labeled:
17 issue:17 issue:
18 body: >18 body: >
19 This issue has been marked as a good first issue for first-time contributors to implement!19 This issue has been marked as a good first issue for contributors to implement!
20 This is a great way to support the project, while also improving your skills, you'll also be credited as a contributor once your PR is merged.20 This is a great way to support the project. While also improving your skills, you'll also be credited as a contributor once your PR is merged.
21 If you're new to SillyTavern [here are a collection of resources](https://docs.sillytavern.app/)21 If you're new to SillyTavern [here is the official documentation](https://docs.sillytavern.app/). The official contribution guide can be found [here](https://github.com/SillyTavern/SillyTavern/blob/release/CONTRIBUTING.md).
22 If you need any support at all, feel free to reach out via [Discord](https://discord.gg/sillytavern).22 If you need any support at all, feel free to reach out via [Discord](https://discord.gg/sillytavern), or let us know in this issue or via [discussions](https://github.com/SillyTavern/SillyTavern/discussions).
2323
24 - name: ❌ wontfix24 - name: ❌ wontfix
25 labeled:25 labeled:
26 issue:26 issue:
27 action: close27 action: close
28 body: >28 body: >
29 This ticked has been marked as 'wontfix', which usually means it is out-of-scope, or not feasible at this time.29 This ticket has been marked as 'wontfix', which usually means it is out-of-scope, or not feasible at this time.
30 You can still fork the project and make the changes yourself.30 IF you have any questions about this, feel free to reach out.
3131
32 - name: βœ… Fixed32 - name: βœ… Done (staging)
33 labeled:33 labeled:
34 issue:34 issue:
35 body: >35 body: >
36 Hello @{{ issue.user.login }}! It looks like all or part of this issue has now been implemented.36 It looks like all or part of this issue has now been implemented as part of the `staging` branch.
37 If you currently are on the `release` branch, you can switch to `staging` to test this right away.
38
39 Note that `staging` is considered less stable than the official releases. To switch, follow existing instructions,
40 or simply enter the following command: `git switch staging`
41
42 - name: βœ… Done
43 labeled:
44 issue:
45 body: >
46 It looks like all or part of this issue has now been implemented as part of the `latest` release.
3747
38 - name: ‼️ High Priority48 - name: ‼️ High Priority
39 labeled:49 labeled:
40 issue:50 issue:
41 body: >51 body: >
42 This ticket has been marked as high priority, and has been bumped to the top of the priority list.52 This issue has been marked as high priority, indicating that it is important to the maintainers and the community.
43 You should expect an implementation to be pushed out soon. Thank you for your patience.53 While we cannot guarantee an immediate fix or provide an exact timeline, please rest assured that it is on our radar and will be addressed whenever possible.
54 Thank you for your patience and understanding.
4455
45 - name: πŸ’€ Spam56 - name: πŸ’€ Spam
46 labeled:57 labeled:
@@ -50,4 +61,4 @@ labels:
50 lock_reason: spam61 lock_reason: spam
51 body: >62 body: >
52 This issue has been identified as spam, and is now locked.63 This issue has been identified as spam, and is now locked.
53 Users who repeatedly64 Please refrain from posting spam in the future, as it disrupts the community and wastes valuable time.
.github/pr-auto-comments.yml+27 -3
@@ -1,15 +1,39 @@
1comment:1comment:
2 footer: |2 footer: >
3 ---3 ---
4 > I am a bot, and this is an automated message πŸ€–4 > I am a bot, and this is an automated message πŸ€–
5labels:5labels:
6 - name: βœ–οΈ Invalid6 - name: βœ–οΈ Invalid
7 labeled:7 labeled:
8 pr:8 pr:
9 body: Thank you @{{ pull_request.user.login }} for suggesting this. Please follow the pull request templates.
10 action: close9 action: close
10 body: >
11 Thank you @{{ pull_request.user.login }} for contributing to this repository.
12 Your Pull Request has been marked as invalid.
13
14 Please ensure you follow the pull request template, provide all relevant info,
15 and target the correct branch. `staging` is the default target branch, `release` should only be targeted for important hotfixes.
16
17 If you have any questions, feel free to reach out.
1118
12 - name: β›” Don't Merge19 - name: β›” Don't Merge
13 labeled:20 labeled:
14 pr:21 pr:
15 body: This PR has been temporarily blocked from merging.22 body: >
23 This PR has been temporarily blocked from merging.
24
25 - name: πŸ’₯πŸ’£ Breaking Changes
26 labeled:
27 pr:
28 body: >
29 This PR is marked as containing one or more breaking changes.
30
31 Please make sure that those are documented accordingly and steps to inform users at release are prepared.
32
33 - name: β›” Waiting For External/Upstream
34 labeled:
35 pr:
36 body: >
37 This PR is awaiting external or upstream changes or approval.
38 It can only be merged once those changes have been implemented and approved.
39 Please inform us of any progress on the upstream changes or approval.