-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.ci-mgmt.yaml
More file actions
46 lines (41 loc) · 1.77 KB
/
.ci-mgmt.yaml
File metadata and controls
46 lines (41 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# REQUIRED: provider is the name of the provider without the pulumi-prefix e.g. "aws".
provider: logfire
# The name of the GitHub organization or username the repository lives in. Defaults to 'pulumi'
organization: pydantic
# The external template only includes workflows relevant for non-Pulumi managed providers.
template: external-bridged-provider
# The name of the GitHub organisation or username where the upstream terraform provider lives.
upstreamProviderOrg: pydantic
# major version of the current provider - used in make files
# This should always be set by all providers as this is key to go module paths.
major-version: 0
# Enable using the terraform converter for example generation.
pulumiConvert: 1
# Set a GitHub username here for automatic upgrade PRs to be assigned to.
# pr-assign: pulumi-bot
# providerDefaultBranch is used to customise the default branch for the repo
providerDefaultBranch: main
# Explicit list of languages to support for SDKs. Java is currently excluded because it doesn't yet work well for non-internal providers.
languages:
- go
- nodejs
- python
# Disable Java publishing and pushing the provider binary to the CDN as these only work internally within Pulumi.
publish:
sdk: "nodejs,python"
cdn: false
# Enables automatic generation of basic docs pages for the registry.
# registryDocs: true
# Disables a pulumi-internal-only step for running create_docs_build during the release
publishRegistry: false
# Disable ESC - use GitHub secrets directly instead
esc:
enabled: false
github-app:
enabled: false
env:
PULUMI_BOT_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }}
GOPRIVATE: github.com/pydantic/*
GONOSUMDB: github.com/pydantic/*
LOGFIRE_BASE_URL: ${{ secrets.LOGFIRE_BASE_URL }}
LOGFIRE_API_KEY: ${{ secrets.LOGFIRE_API_KEY }}