-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: secret scanning validity checks, secret scanning non provider p…
…atterns (#97) * New updates to generated code * New updates to generated code --------- Co-authored-by: Octokit Bot <[email protected]>
- Loading branch information
1 parent
93c060d
commit 668e0f0
Showing
15 changed files
with
392 additions
and
14 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
Currently for this CLI (or any other) to use GitHubs App Installation Auth you need a private key that can be used to create a Json Web Token. | ||
|
||
You should be able to follow the steps [here](https://docs.github.com/en/apps/creating-github-apps/authenticating-with-a-github-app/managing-private-keys-for-github-apps) to generate a private key for the cli to use during app installation auth. `.gitignore` will ignore any .pem files that are in this directory to prevent anyone from accidentally commiting a private key. | ||
You should be able to follow the steps [here](https://docs.github.com/en/apps/creating-github-apps/authenticating-with-a-github-app/managing-private-keys-for-github-apps) to generate a private key for the cli to use during app installation auth. `.gitignore` will ignore any .pem files that are in this directory to prevent anyone from accidentally commiting a private key. |
This file contains 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
21 changes: 21 additions & 0 deletions
21
src/GitHub/Models/CodeSecurityConfiguration_secret_scanning_validity_checks.cs
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// <auto-generated/> | ||
using System.Runtime.Serialization; | ||
using System; | ||
namespace GitHub.Models { | ||
/// <summary>The enablement status of secret scanning validity checks</summary> | ||
public enum CodeSecurityConfiguration_secret_scanning_validity_checks | ||
{ | ||
[EnumMember(Value = "enabled")] | ||
#pragma warning disable CS1591 | ||
Enabled, | ||
#pragma warning restore CS1591 | ||
[EnumMember(Value = "disabled")] | ||
#pragma warning disable CS1591 | ||
Disabled, | ||
#pragma warning restore CS1591 | ||
[EnumMember(Value = "not_set")] | ||
#pragma warning disable CS1591 | ||
Not_set, | ||
#pragma warning restore CS1591 | ||
} | ||
} |
This file contains 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
This file contains 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
Oops, something went wrong.