-
Notifications
You must be signed in to change notification settings - Fork 5
🚀 [Feature]: Teams and Workflows cleanup #368
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…functions to include team URL
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copilot wasn't able to review any files in this pull request.
Files not reviewed (16)
- src/classes/public/Teams/GitHubTeam.ps1: Language not supported
- src/functions/private/Teams/Get-GitHubTeamBySlug.ps1: Language not supported
- src/functions/private/Teams/Get-GitHubTeamListByOrg.ps1: Language not supported
- src/functions/public/Teams/Get-GitHubTeam.ps1: Language not supported
- src/functions/public/Teams/New-GitHubTeam.ps1: Language not supported
- src/functions/public/Teams/Remove-GitHubTeam.ps1: Language not supported
- src/functions/public/Teams/Update-GitHubTeam.ps1: Language not supported
- src/functions/public/Workflows/Disable-GitHubWorkflow.ps1: Language not supported
- src/functions/public/Workflows/Enable-GitHubWorkflow.ps1: Language not supported
- src/functions/public/Workflows/Get-GitHubWorkflow.ps1: Language not supported
- src/functions/public/Workflows/Runs/Get-GitHubWorkflowRun.ps1: Language not supported
- src/functions/public/Workflows/Runs/Remove-GitHubWorkflowRun.ps1: Language not supported
- src/functions/public/Workflows/Runs/Restart-GitHubWorkflowRun.ps1: Language not supported
- src/functions/public/Workflows/Runs/Stop-GitHubWorkflowRun.ps1: Language not supported
- src/functions/public/Workflows/Start-GitHubWorkflow.ps1: Language not supported
- tests/Teams.Tests.ps1: Language not supported
… use 'Slug' parameter instead of 'Name'
…'Organization' parameter instead of 'Owner'
…nization' parameter and update related documentation
…amBySlug and Remove-GitHubTeam functions
…to return team object only if it exists
…TeamBySlug and Get-GitHubTeamListByOrg functions
…g in GitHub tests
…include GUID for uniqueness
…ps1 and Variables.Tests.ps1 to use $repo instead of $repoPrefix
…g API call details in error messages
…using API call details in error messages
…ing request details for clarity
…ting request details for clarity
…en details to request information
…nd Variables.Tests.ps1 for consistency and clarity
…s.Tests.ps1 and Variables.Tests.ps1 for clarity
…redundant details for clarity
Module GitHub - 0.26.0 published to the PowerShell Gallery. |
GitHub release for GitHub v0.26.0 has been created. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This pull request introduces several updates focusing on enhancements to the Teams and Workflows functions. Key changes include adding the
Url
property for GitHub teams, improving query structures, refining parameters for public functions, and updating documentation links for workflows.Enhancements to Teams Functionality
Url
property to theGitHubTeam
class and updated related queries (Get-GitHubTeamBySlug
,Get-GitHubTeamListByOrg
, andNew-GitHubTeam
) to include theurl
field in their responses.Get-GitHubTeam
,New-GitHubTeam
,Remove-GitHubTeam
,Update-GitHubTeam
) by renaming, reordering and clarifying mandatory parameters likeOrganization
andSlug
(previouslyName
).ParentTeamID
inNew-GitHubTeam
by replacing a conditional check with direct nullable type usage.Documentation and Query Improvements
.NOTES
and.LINK
sections in the documentation for all workflow-related functions to ensure accurate links and better clarity.Type of change
Checklist