Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusStorhaug committed Oct 27, 2023
1 parent 8d73c9e commit 5cc7752
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
filter Get-GitHubRepositoryTags {
filter Get-GitHubRepositoryTag {
<#
.SYNOPSIS
List repository tags
Expand All @@ -7,7 +7,7 @@
List repository tags
.EXAMPLE
Get-GitHubRepositoryTags -Owner 'PSModule' -Repo 'GitHub'
Get-GitHubRepositoryTag -Owner 'PSModule' -Repo 'GitHub'
Gets all tags of the GitHub repository.
Expand All @@ -16,6 +16,7 @@
#>
[CmdletBinding()]
[Alias('Get-GitHubRepositoryTags')]
param (
# The account owner of the repository. The name is not case sensitive.
[Parameter()]
Expand Down

0 comments on commit 5cc7752

Please sign in to comment.