-
Notifications
You must be signed in to change notification settings - Fork 0
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. (#89)
* [internal] Update GitHub Actions workflow files * lint_provider.fix --------- Co-authored-by: Ian Wahbe <[email protected]>
- Loading branch information
1 parent
c1b880d
commit 90094f0
Showing
5 changed files
with
26 additions
and
4 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 |
---|---|---|
|
@@ -7,6 +7,11 @@ on: | |
- upgrade-bridge | ||
workflow_dispatch: | ||
inputs: | ||
kind: | ||
description: Overrides the kind of upgrade. Must be one of `all`, `bridge`, `provider`, `code`, `pf`, or `pulumi`. | ||
required: false | ||
type: string | ||
default: "bridge" | ||
target-bridge-version: | ||
description: pulumi-terraform-bridge version or hash reference | ||
required: false | ||
|
@@ -50,7 +55,7 @@ jobs: | |
if: github.event_name == 'workflow_dispatch' | ||
uses: pulumi/[email protected] | ||
with: | ||
kind: bridge | ||
kind: ${{ inputs.kind }} | ||
email: [email protected] | ||
username: pulumi-bot | ||
automerge: ${{ inputs.automerge }} | ||
|
@@ -62,7 +67,7 @@ jobs: | |
if: github.event_name == 'repository_dispatch' | ||
uses: pulumi/[email protected] | ||
with: | ||
kind: bridge | ||
kind: ${{ inputs.kind }} | ||
email: [email protected] | ||
username: pulumi-bot | ||
automerge: ${{ github.event.client_payload.automerge }} | ||
|
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
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
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
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