mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-04-19 16:33:36 +03:00
Merge branch 'master' into changecdnagain
This commit is contained in:
commit
d4333ce9fb
5 changed files with 18 additions and 55 deletions
55
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
55
.github/ISSUE_TEMPLATE/bug-report.yml
vendored
|
@ -14,6 +14,15 @@ body:
|
||||||
placeholder: Description
|
placeholder: Description
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
- type: textarea
|
||||||
|
id: expected-vs-actual-behavior
|
||||||
|
attributes:
|
||||||
|
label: Expected vs. Actual Behavior
|
||||||
|
description: |
|
||||||
|
Provide a description of the expected behavior compared to the actual behavior.
|
||||||
|
placeholder: Expected vs. Actual Behavior
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: repro-steps
|
id: repro-steps
|
||||||
attributes:
|
attributes:
|
||||||
|
@ -23,54 +32,12 @@ body:
|
||||||
placeholder: Minimal Reproduction
|
placeholder: Minimal Reproduction
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: textarea
|
|
||||||
id: expected-behavior
|
|
||||||
attributes:
|
|
||||||
label: Expected behavior
|
|
||||||
description: |
|
|
||||||
Provide a description of the expected behavior.
|
|
||||||
placeholder: Expected behavior
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
- type: textarea
|
|
||||||
id: actual-behavior
|
|
||||||
attributes:
|
|
||||||
label: Actual behavior
|
|
||||||
description: |
|
|
||||||
Provide a description of the actual behavior observed. If applicable please include any error messages, exception stacktraces or memory dumps.
|
|
||||||
placeholder: Actual behavior
|
|
||||||
validations:
|
|
||||||
required: true
|
|
||||||
- type: textarea
|
|
||||||
id: known-workarounds
|
|
||||||
attributes:
|
|
||||||
label: Known Workarounds
|
|
||||||
description: |
|
|
||||||
Please provide a description of any known workarounds.
|
|
||||||
placeholder: Known Workarounds
|
|
||||||
validations:
|
|
||||||
required: false
|
|
||||||
- type: textarea
|
|
||||||
id: configuration
|
|
||||||
attributes:
|
|
||||||
label: Configuration
|
|
||||||
description: |
|
|
||||||
Please provide more information on your configuration:
|
|
||||||
* Which version of .NET is the bot running on?
|
|
||||||
* What OS and version, and what distro if applicable?
|
|
||||||
* What is the architecture (x64, x86, ARM, ARM64)?
|
|
||||||
* Do you know whether it is specific to that configuration?
|
|
||||||
* If possible, please provide the Configuration.json for the affected guild
|
|
||||||
* If applicable, provide the member data JSON for the affected members
|
|
||||||
placeholder: Configuration
|
|
||||||
validations:
|
|
||||||
required: false
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: other-info
|
id: other-info
|
||||||
attributes:
|
attributes:
|
||||||
label: Other information
|
label: Other Information
|
||||||
description: |
|
description: |
|
||||||
If you have an idea where the problem might lie, let us know that here. Please include any pointers to code, relevant changes, or related issues you know of.
|
If you have an idea where the problem might lie, let us know that here. Please include any pointers to code, relevant changes, or related issues you know of.
|
||||||
placeholder: Other information
|
placeholder: Other Information
|
||||||
validations:
|
validations:
|
||||||
required: false
|
required: false
|
||||||
|
|
2
.github/ISSUE_TEMPLATE/config.yml
vendored
2
.github/ISSUE_TEMPLATE/config.yml
vendored
|
@ -1 +1 @@
|
||||||
blank_issues_enabled: false
|
blank_issues_enabled: true
|
||||||
|
|
9
.github/ISSUE_TEMPLATE/feature-request.yml
vendored
9
.github/ISSUE_TEMPLATE/feature-request.yml
vendored
|
@ -18,15 +18,6 @@ body:
|
||||||
placeholder: Proposed Solution
|
placeholder: Proposed Solution
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
- type: textarea
|
|
||||||
id: alternatives
|
|
||||||
attributes:
|
|
||||||
label: Considered Alternatives
|
|
||||||
description: |
|
|
||||||
Please provide a description of any alternative solutions or features you've considered.
|
|
||||||
placeholder: Considered Alternatives
|
|
||||||
validations:
|
|
||||||
required: false
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: other-info
|
id: other-info
|
||||||
attributes:
|
attributes:
|
||||||
|
|
4
.github/dependabot.yml
vendored
4
.github/dependabot.yml
vendored
|
@ -26,3 +26,7 @@ updates:
|
||||||
labels:
|
labels:
|
||||||
- "type: change"
|
- "type: change"
|
||||||
- "area: build/ci"
|
- "area: build/ci"
|
||||||
|
groups:
|
||||||
|
remora:
|
||||||
|
patterns:
|
||||||
|
- "Remora.Discord.*"
|
||||||
|
|
|
@ -72,7 +72,8 @@ public class MessageEditedResponder : IResponder<IMessageUpdate>
|
||||||
cacheKey, ct);
|
cacheKey, ct);
|
||||||
if (!messageResult.IsDefined(out var message))
|
if (!messageResult.IsDefined(out var message))
|
||||||
{
|
{
|
||||||
return Result.FromError(messageResult);
|
_ = _channelApi.GetChannelMessageAsync(channelId, messageId, ct);
|
||||||
|
return Result.FromSuccess();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (message.Content == newContent)
|
if (message.Content == newContent)
|
||||||
|
|
Loading…
Add table
Reference in a new issue