Skip to content

Commit

Permalink
Improving description for Team members resource (#488)
Browse files Browse the repository at this point in the history
### Summary
- Improving description for Team members resource - Fixes:
#178
- Bumping dotnet to 8.0 (environments example stopped building for some
reason, and it requires 7+ due to multiline strings)


### Testing
- auto integ tests
  • Loading branch information
IaroslavTitov authored Jan 13, 2025
1 parent ff33846 commit 183d805
Show file tree
Hide file tree
Showing 11 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-tools/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ runs:
if: inputs.tools == 'all' || contains(inputs.tools, 'dotnet')
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
dotnet-version: 8.0.x

- name: Setup Python
if: inputs.tools == 'all' || contains(inputs.tools, 'python')
Expand Down
2 changes: 1 addition & 1 deletion examples/cs-environments/cs-environments.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp7.0</TargetFramework>
<TargetFramework>netcoreapp8.0</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion examples/cs-schedules/cs-schedules.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp6.0</TargetFramework>
<TargetFramework>netcoreapp8.0</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion examples/cs-teams/cs-teams.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp6.0</TargetFramework>
<TargetFramework>netcoreapp8.0</TargetFramework>
<Nullable>enable</Nullable>
</PropertyGroup>

Expand Down
4 changes: 2 additions & 2 deletions provider/cmd/pulumi-resource-pulumiservice/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@
"type": "string"
},
"members": {
"description": "List of team members.",
"description": "List of Pulumi Cloud usernames of team members.",
"type": "array",
"items": {
"type": "string"
Expand Down Expand Up @@ -793,7 +793,7 @@
"type": "string"
},
"members": {
"description": "List of team members.",
"description": "List of Pulumi Cloud usernames of team members.",
"type": "array",
"items": {
"type": "string"
Expand Down
4 changes: 2 additions & 2 deletions sdk/dotnet/Team.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions sdk/go/pulumiservice/team.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions sdk/java/src/main/java/com/pulumi/pulumiservice/Team.java

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions sdk/java/src/main/java/com/pulumi/pulumiservice/TeamArgs.java

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions sdk/nodejs/team.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions sdk/python/pulumi_pulumiservice/team.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 183d805

Please sign in to comment.