Skip to content

Commit

Permalink
Merge pull request #175 from NoxOrg/bugfix/project-group-name
Browse files Browse the repository at this point in the history
- fixed project group name variable
  • Loading branch information
jan-schutte committed Feb 12, 2024
2 parents 643fb8e + d55b53e commit 7fee1db
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public Task BeginAsync(IDictionary<string, object> inputs)
_server = inputs.Value<string>("server");
_pat = inputs.Value<string>("personal-access-token");
_projectId = inputs.Value<Guid>("project-id");
_aadGroupName = inputs.Value<string>("project-group-name");
_projectGroupName = inputs.Value<string>("project-group-name");
_aadGroupName = inputs.Value<string>("aad-group-name");
return Task.CompletedTask;
}
Expand Down

0 comments on commit 7fee1db

Please sign in to comment.