generated from pulumi/pulumi-tf-provider-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update GitHub Actions workflows. (#165)
This PR was automatically generated by the update-workflows-ecosystem-providers workflow in the pulumi/ci-mgmt repo, from commit cf78ce163f708bf49868dc1fe205b8175a034c44.
- Loading branch information
1 parent
589eb49
commit 0b9368e
Showing
2 changed files
with
16 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,17 @@ on: | |
required: false | ||
type: string | ||
default: "latest" | ||
target-pulumi-version: | ||
description: | | ||
Set the version of `pulumi/pkg` and `pulumi/sdk` to depend on for bridged providers. Currently, | ||
these versions inform the linked runtime and SDK generation in all languages except Java. Valid | ||
options are: | ||
- "": Use the same version as pulumi-terraform-bridge | ||
- A go version such as "v3.90.1" | ||
- A commit SHA in pulumi/pulumi such as "ac71ebc1d34e5ccfd1a7fed61e6ff43a3160f3cb" | ||
required: false | ||
type: string | ||
default: "" | ||
pr-reviewers: | ||
description: Reviewers to assign to the auto-opened pull request | ||
required: false | ||
|
@@ -37,23 +48,25 @@ jobs: | |
steps: | ||
- name: Call upgrade provider action | ||
if: github.event_name == 'workflow_dispatch' | ||
uses: pulumi/[email protected].9 | ||
uses: pulumi/[email protected].10 | ||
with: | ||
kind: bridge | ||
email: [email protected] | ||
username: pulumi-bot | ||
automerge: ${{ inputs.automerge }} | ||
target-bridge-version: ${{ inputs.target-bridge-version }} | ||
target-pulumi-version: ${{ inputs.target-pulumi-version }} | ||
pr-reviewers: ${{ inputs.pr-reviewers }} | ||
pr-description: ${{ inputs.pr-description }} | ||
- name: Call upgrade provider action | ||
if: github.event_name == 'repository_dispatch' | ||
uses: pulumi/[email protected].9 | ||
uses: pulumi/[email protected].10 | ||
with: | ||
kind: bridge | ||
email: [email protected] | ||
username: pulumi-bot | ||
automerge: ${{ github.event.client_payload.automerge }} | ||
target-pulumi-version: ${{ github.event.client_payload.target-pulumi-version }} | ||
target-bridge-version: ${{ github.event.client_payload.target-bridge-version }} | ||
pr-reviewers: ${{ github.event.client_payload.pr-reviewers }} | ||
pr-description: ${{ github.event.client_payload.pr-description }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Call upgrade provider action | ||
uses: pulumi/[email protected].9 | ||
uses: pulumi/[email protected].10 | ||
with: | ||
kind: all | ||
email: [email protected] | ||
|