Skip to content

Commit

Permalink
CI/CD fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Misha12 committed Aug 2, 2024
1 parent c8890d0 commit 99f3ae4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
ShouldDeploy:
runs-on: ubuntu-latest
outputs:
Bot: ${{ steps.filter.output.Bot }}
Bot: ${{ steps.filter.outputs.Bot }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion src/GrillBot.Data/Models/API/Unverify/UnverifyLogRemove.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ namespace GrillBot.Data.Models.API.Unverify;

public class UnverifyLogRemove
{
public List<Role> ReturnedRoles { get; set; }
public List<Role> ReturnedRoles { get; set; } = new();
public List<string> ReturnedChannelIds { get; set; }
public bool FromWeb { get; set; }
public bool Force { get; set; }
Expand Down

0 comments on commit 99f3ae4

Please sign in to comment.