Skip to content

Commit

Permalink
Merge pull request #2287 from opengovern/fix-tasks
Browse files Browse the repository at this point in the history
fix: add github resource types
  • Loading branch information
artaasadi authored Dec 19, 2024
2 parents 5a57eda + 4c33a48 commit d33ceef
Showing 1 changed file with 13 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,22 @@ package configs
import "github.com/opengovern/opencomply/services/integration/integration-type/interfaces"

var ResourceTypeConfigs = map[string]*interfaces.ResourceTypeConfiguration{
"Github/Container/Package": &interfaces.ResourceTypeConfiguration{
"Github/Container/Package": {
Name: "Github/Container/Package",
IntegrationType: IntegrationTypeGithubAccount,
Description: "",
Params: []interfaces.Param{},
},
"Github/Repository": {
Name: "Github/Repository",
IntegrationType: IntegrationTypeGithubAccount,
Description: "",
Params: []interfaces.Param{
{
Name: "repository_name",
Description: `Please provide the repo name (i.e. "internal-tools")`,
Required: false,
},
},
},
}

0 comments on commit d33ceef

Please sign in to comment.