ci: Add weekly trigger to Github Workflow

This commit is contained in:
MSWS
2025-06-30 02:48:09 -07:00
parent f5d1344be6
commit db9b73aa49
2 changed files with 3 additions and 1 deletions

View File

@@ -11,6 +11,8 @@ on:
paths:
- 'src/**'
- '.github/workflows/nightly.yml'
schedule:
- cron: '15 0 * * 3' # Every Wednesday at 00:15 UTC
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}

View File

@@ -50,7 +50,7 @@ public class DisbandTests(IServiceProvider provider)
[Fact]
public async Task Disband_WithOwner_ShouldAskForConfirmation() {
var gang = await Gangs.CreateGang("Test Gang", TestPlayer);
await Gangs.CreateGang("Test Gang", TestPlayer);
var result = await Commands.ProcessCommand(TestPlayer,
CommandCallingContext.Chat, Command.Name);
var exp = Locale.Get(MSG.COMMAND_GANG_DISBAND_WARN);