Skip to content

Commit

Permalink
馃悰 Remove Options that belong to the Action (#1898)
Browse files Browse the repository at this point in the history
* updates

* tests
  • Loading branch information
laurentsimon committed May 9, 2022
1 parent 7ff4b7e commit 62e3de5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
14 changes: 6 additions & 8 deletions options/options.go
Expand Up @@ -28,22 +28,20 @@ import (

// Options define common options for configuring scorecard.
type Options struct {
Repo string `env:"GITHUB_REPOSITORY"`
Repo string
Local string
Commit string `env:"GITHUB_REF"`
Commit string
LogLevel string
Format string `env:"SCORECARD_RESULTS_FORMAT"`
Format string
NPM string
PyPI string
RubyGems string
PolicyFile string `env:"SCORECARD_POLICY_FILE"`
PolicyFile string
// TODO(action): Add logic for writing results to file
ResultsFile string `env:"SCORECARD_RESULTS_FILE"`
ChecksToRun []string `env:"SCORECARD_ENABLED_CHECKS"`
ResultsFile string
ChecksToRun []string
Metadata []string
ShowDetails bool
// TODO(action): Add logic for determining if results should be published.
PublishResults bool `env:"SCORECARD_PUBLISH_RESULTS"`

// Feature flags.
EnableSarif bool `env:"ENABLE_SARIF"`
Expand Down
2 changes: 0 additions & 2 deletions options/options_test.go
Expand Up @@ -37,7 +37,6 @@ func TestOptions_Validate(t *testing.T) {
ChecksToRun []string
Metadata []string
ShowDetails bool
PublishResults bool
EnableSarif bool
EnableScorecardV5 bool
EnableScorecardV6 bool
Expand Down Expand Up @@ -106,7 +105,6 @@ func TestOptions_Validate(t *testing.T) {
ChecksToRun: tt.fields.ChecksToRun,
Metadata: tt.fields.Metadata,
ShowDetails: tt.fields.ShowDetails,
PublishResults: tt.fields.PublishResults,
EnableSarif: tt.fields.EnableSarif,
EnableScorecardV5: tt.fields.EnableScorecardV5,
EnableScorecardV6: tt.fields.EnableScorecardV6,
Expand Down

0 comments on commit 62e3de5

Please sign in to comment.