feat(provider): add repository actions secret resource

Closes #7
This commit is contained in:
Julien Dessaux 2025-05-23 00:44:01 +02:00
parent 908105f643
commit d18a812ea4
Signed by: adyxax
GPG key ID: F92E51B86E07177E
5 changed files with 229 additions and 1 deletions

View file

@ -75,7 +75,9 @@ func (p *Provider) Configure(ctx context.Context, req provider.ConfigureRequest,
}
func (p *Provider) Resources(ctx context.Context) []func() resource.Resource {
return []func() resource.Resource{}
return []func() resource.Resource{
NewRepositoryActionsSecretResource,
}
}
func (p *Provider) DataSources(ctx context.Context) []func() datasource.DataSource {