Add's in the ability to support kind config for ingress-nginx #109
test-native-provider-ci.yml
on: pull_request
Test native providers
19s
Annotations
8 errors and 1 warning
Unexpected file modified:
native-provider-ci/providers/kubernetes-cert-manager/repo/.goreleaser.prerelease.yml#L1
File modified:
@@ -19,7 +19,7 @@ builds:
- -s
- -w
- -X
- github.com/pulumi/pulumi-kubernetes-cert-manager/pkg/version.Version={{.Tag}}
+ github.com/pulumi/pulumi-kubernetes-cert-manager/provider/pkg/version.Version={{.Tag}}
binary: pulumi-resource-kubernetes-cert-manager
archives:
- name_template: "{{ .Binary }}-{{ .Tag }}-{{ .Os }}-{{ .Arch }}"
|
Unexpected file modified:
native-provider-ci/providers/kubernetes-cert-manager/repo/.goreleaser.yml#L1
File modified:
@@ -19,7 +19,7 @@ builds:
- -s
- -w
- -X
- github.com/pulumi/pulumi-kubernetes-cert-manager/pkg/version.Version={{.Tag}}
+ github.com/pulumi/pulumi-kubernetes-cert-manager/provider/pkg/version.Version={{.Tag}}
binary: pulumi-resource-kubernetes-cert-manager
archives:
- name_template: "{{ .Binary }}-{{ .Tag }}-{{ .Os }}-{{ .Arch }}"
|
Unexpected file modified:
native-provider-ci/providers/kubernetes-coredns/repo/.goreleaser.prerelease.yml#L1
File modified:
@@ -19,7 +19,7 @@ builds:
- -s
- -w
- -X
- github.com/pulumi/pulumi-kubernetes-coredns/pkg/version.Version={{.Tag}}
+ github.com/pulumi/pulumi-kubernetes-coredns/provider/pkg/version.Version={{.Tag}}
binary: pulumi-resource-kubernetes-coredns
archives:
- name_template: "{{ .Binary }}-{{ .Tag }}-{{ .Os }}-{{ .Arch }}"
|
Unexpected file modified:
native-provider-ci/providers/kubernetes-coredns/repo/.goreleaser.yml#L1
File modified:
@@ -19,7 +19,7 @@ builds:
- -s
- -w
- -X
- github.com/pulumi/pulumi-kubernetes-coredns/pkg/version.Version={{.Tag}}
+ github.com/pulumi/pulumi-kubernetes-coredns/provider/pkg/version.Version={{.Tag}}
binary: pulumi-resource-kubernetes-coredns
archives:
- name_template: "{{ .Binary }}-{{ .Tag }}-{{ .Os }}-{{ .Arch }}"
|
Unexpected file modified:
native-provider-ci/providers/kubernetes-ingress-nginx/repo/.goreleaser.prerelease.yml#L1
File modified:
@@ -19,7 +19,7 @@ builds:
- -s
- -w
- -X
- github.com/pulumi/pulumi-kubernetes-ingress-nginx/pkg/version.Version={{.Tag}}
+ github.com/pulumi/pulumi-kubernetes-ingress-nginx/provider/pkg/version.Version={{.Tag}}
binary: pulumi-resource-kubernetes-ingress-nginx
archives:
- name_template: "{{ .Binary }}-{{ .Tag }}-{{ .Os }}-{{ .Arch }}"
|
Unexpected file modified:
native-provider-ci/providers/kubernetes-ingress-nginx/repo/.goreleaser.yml#L1
File modified:
@@ -19,7 +19,7 @@ builds:
- -s
- -w
- -X
- github.com/pulumi/pulumi-kubernetes-ingress-nginx/pkg/version.Version={{.Tag}}
+ github.com/pulumi/pulumi-kubernetes-ingress-nginx/provider/pkg/version.Version={{.Tag}}
binary: pulumi-resource-kubernetes-ingress-nginx
archives:
- name_template: "{{ .Binary }}-{{ .Tag }}-{{ .Os }}-{{ .Arch }}"
|
Unexpected file modified:
native-provider-ci/src/github-workflow.d.ts#L1
File modified:
@@ -123,8 +123,8 @@ export type Configuration =
| number
| boolean
| {
- [k: string]: Configuration;
- }
+ [k: string]: Configuration;
+ }
| Configuration[];
/**
* To set custom environment variables, you need to specify the variables in the workflow file. You can define environment variables for a step, job, or entire workflow using the jobs.<job_id>.steps[*].env, jobs.<job_id>.env, and env keywords. For more information, see https://docs.github.com/en/actions/learn-github-actions/workflow-syntax-for-github-actions#jobsjob_idstepsenv
@@ -134,8 +134,8 @@ export type Configuration =
*/
export type Env =
| {
- [k: string]: string | number | boolean;
- }
+ [k: string]: string | number | boolean;
+ }
| string;
/**
* This interface was referenced by `GithubWorkflow`'s JSON-Schema
@@ -185,314 +185,314 @@ export interface GithubWorkflow {
* The name of the GitHub event that triggers the workflow. You can provide a single event string, array of events, array of event types, or an event configuration map that schedules a workflow or restricts the execution of a workflow to specific files, tags, or branch changes. For a list of available events, see https://help.github.com/en/github/automating-your-workflow-with-github-actions/events-that-trigger-workflows.
*/
on:
- | Event
- | Event[]
- | {
- /**
- * Runs your workflow anytime the branch_protection_rule event occurs. More than one activity type triggers this event.
- */
- branch_protection_rule?: {
- [k: string]: unknown;
- } | null;
- /**
- * Runs your workflow anytime the check_run event occurs. More than one activity type triggers this event. For information about the REST API, see https://developer.github.com/v3/checks/runs.
- */
- check_run?: {
- [k: string]: unknown;
- } | null;
- /**
- * Runs your workflow anytime the check_suite event occurs. More than one activity type triggers this event. For information about the REST API, see https://developer.github.com/v3/checks/suites/.
- */
- check_suite?: {
- [k: string]: unknown;
- } | null;
- /**
- * Runs your workflow anytime someone creates a branch or tag, which triggers the create event. For information about the REST API, see https://developer.github.com/v3/git/refs/#create-a-reference.
- */
- create?: {
- [k: string]: unknown;
- } | null;
- /**
- * Runs your workflow anytime someone deletes a branch or tag, which triggers the delete event. For information about the REST API, see https://developer.github.com/v3/git/refs/#delete-a-reference.
- */
- delete?: {
- [k: string]: unknown;
- } | null;
- /**
- * Runs your workflow anytime someone creates a deployment, which triggers the deployment event. Deployments created with a commit SHA may not have a Git ref. For information about the REST API, see https://developer.github.com/v3/repos/deployments/.
- */
- deployment?: {
- [k: string]: unknown;
- } | null;
- /**
- * Runs your workflow anytime a third party provides a deployment status, which triggers the deployment_status event. Deployments created with a commit SHA may not have a Git ref. For information about the REST API, see https://developer.github.com/v3/repos/deployments/#create-a-deployment-status.
- */
- deployment_status?: {
- [k: string]: unknown;
- } | null;
- /**
- * Runs your workflow anytime the discussion event occurs. More than one activity type triggers this event. For information about the GraphQL API, see https://docs.github.com/en/graphql/guides/using-the-graphql-api-for-discussions
- */
- discussion?: {
- [k: string]: unknown;
- } | null;
- /**
- * Runs your workflow anytime the discussion_comment event occurs. More than one activity type triggers this event. For information about the GraphQL API, see https://docs.github.com/en/graphql/guides/using-the-graphql-api-for-discussions
- */
- discussion_comment?: {
- [k: string]: unknown;
-
|
Test native providers
Unexpected changes detected: 7. See file annotations for details.
|
Test native providers
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|