Skip to content

Commit

Permalink
fix(changelog): possibly fixes CL
Browse files Browse the repository at this point in the history
  • Loading branch information
Tsurupeta authored Mar 27, 2023
1 parent 677e104 commit c72556a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check_changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: .NET SDK setup
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
dotnet-version: 7.0.x
- name: Install depends
run: dotnet tool install -g dotnet-script
- name: Check changelog in PR
Expand Down
2 changes: 1 addition & 1 deletion tools/ChangelogGenerator/ClCheck.csx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public async Task RemoveAllClLabelsExcept(string except)
{
if (clLabels.Contains(label.Name) && label.Name != except)
{
await client.DeleteAsync($"repos/{githubRepository}/issues/{pullRequest.Number}/labels/{Uri.EscapeUriString(label.Name)}");
await client.DeleteAsync($"repos/{githubRepository}/issues/{pullRequest.Number}/labels/{Uri.EscapeDataString(label.Name)}");
}
}
}
Expand Down

0 comments on commit c72556a

Please sign in to comment.