We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b46a42 commit 06e114dCopy full SHA for 06e114d
plugins/sentry/sentry_cli.go
@@ -12,7 +12,11 @@ func SentryCLI() schema.Executable {
12
Name: "Sentry CLI",
13
Runs: []string{"sentry-cli"},
14
DocsURL: sdk.URL("https://docs.sentry.io/product/cli/"),
15
- NeedsAuth: needsauth.NotForHelpOrVersion(),
+ NeedsAuth: needsauth.IfAll(
16
+ needsauth.NotForHelpOrVersion(),
17
+ needsauth.NotWhenContainsArgs("--auth-token"),
18
+ needsauth.NotWhenContainsArgs("--api-key"),
19
+ ),
20
Uses: []schema.CredentialUsage{
21
{
22
Name: credname.AuthToken,
0 commit comments