Skip to content

Commit

Permalink
fix for Disable-GitHubRepositorySecurityFixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MariusStorhaug committed Oct 27, 2023
1 parent 9a68f8c commit 0f7bde3
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
filter Disable-GitHubRepositorySecurityFixes {
filter Disable-GitHubRepositorySecurityFix {
<#
.SYNOPSIS
Disable automated security fixes
.DESCRIPTION
Disables automated security fixes for a repository. The authenticated user must have admin access to the repository. For more information, see "[Configuring automated security fixes](https://docs.github.com/articles/configuring-automated-security-fixes)".
Disables automated security fixes for a repository. The authenticated user must have admin access to the repository.
For more information, see
"[Configuring automated security fixes](https://docs.github.com/articles/configuring-automated-security-fixes)".
.EXAMPLE
Disable-GitHubRepositorySecurityFixes -Owner 'PSModule' -Repo 'GitHub'
Disable-GitHubRepositorySecurityFix -Owner 'PSModule' -Repo 'GitHub'
Disables automated security fixes for the repository.
Expand All @@ -16,6 +18,7 @@
#>
[CmdletBinding()]
[Alias('Disable-GitHubRepositorySecurityFixes')]
param (
# The account owner of the repository. The name is not case sensitive.
[Parameter()]
Expand Down

0 comments on commit 0f7bde3

Please sign in to comment.