generated from pulumi/pulumi-tf-provider-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
206 additions
and
58 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
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
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,100 @@ | ||
name: Upgrade bridge | ||
# WARNING: This file is autogenerated - changes will be overwritten if not made via https://github.com/pulumi/ci-mgmt | ||
|
||
name: Upgrade bridge | ||
on: | ||
repository_dispatch: | ||
types: | ||
- upgrade-bridge | ||
- upgrade-bridge-test | ||
workflow_dispatch: | ||
schedule: | ||
# At 05:00 on Monday | ||
- cron: 0 5 * * 1 | ||
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 | ||
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 | ||
type: string | ||
default: "" | ||
pr-description: | ||
description: Extra description to add to the auto-opened pull request | ||
required: false | ||
type: string | ||
default: "" | ||
pr-title-prefix: | ||
description: Prefix to add to the auto-opened pull request title | ||
required: false | ||
type: string | ||
default: "" | ||
automerge: | ||
description: Mark created PR for auto-merging? | ||
required: false | ||
type: boolean | ||
default: false | ||
|
||
permissions: | ||
contents: write | ||
issues: write | ||
pull-requests: write | ||
|
||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
jobs: | ||
upgrade_bridge: | ||
name: upgrade-bridge | ||
upgrade_provider: | ||
name: upgrade-provider | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
issues: write | ||
steps: | ||
- name: Call upgrade provider action | ||
uses: pulumi/pulumi-upgrade-provider-action@v0.0.12 | ||
with: | ||
kind: bridge | ||
email: ringo@de-smet.name | ||
username: "Ringo De Smet" | ||
env: | ||
GH_TOKEN: ${{ secrets.UPGRADE_PROVIDER_TOKEN }} | ||
- name: Checkout Repo | ||
uses: actions/checkout@v4 | ||
with: | ||
persist-credentials: false | ||
- name: Setup tools | ||
uses: ./.github/actions/setup-tools | ||
with: | ||
tools: pulumictl, pulumicli, dotnet, go, nodejs, python | ||
- name: Call upgrade provider action | ||
if: github.event_name == 'workflow_dispatch' | ||
uses: pulumi/pulumi-upgrade-provider-action@v0.0.12 | ||
with: | ||
kind: ${{ inputs.kind }} | ||
email: bot@pulumi.com | ||
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 }} | ||
pr-title-prefix: ${{ inputs.pr-title-prefix }} | ||
- name: Call upgrade provider action | ||
if: github.event_name == 'repository_dispatch' | ||
uses: pulumi/pulumi-upgrade-provider-action@v0.0.12 | ||
with: | ||
kind: ${{ github.event.client_payload.kind || 'bridge' }} | ||
email: bot@pulumi.com | ||
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 }} | ||
pr-title-prefix: ${{ github.event.client_payload.pr-title-prefix }} |
Oops, something went wrong.