Update GH workflows, single native provider #112
Workflow file for this run
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
# Generates a PR for the files in native-provider-ci/providers/* to the corresponding | |
# Pulumi provider. Note that this workflow does not generate any files - | |
# workflows must already be generated and committed to this repo when this | |
# workflow is run. | |
name: Update GH workflows, single native provider | |
"on": | |
workflow_dispatch: | |
inputs: | |
provider_name: | |
description: The name of the provider to deploy - do not include the pulumi prefix in the name. | |
required: true | |
type: string | |
workflow_call: | |
inputs: | |
provider_name: | |
description: The name of the provider to deploy - do not include the pulumi prefix in the name. | |
required: true | |
type: string | |
secrets: | |
PULUMI_BOT_TOKEN: | |
required: true | |
env: | |
GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} | |
jobs: | |
deploy: | |
uses: ./.github/workflows/update-workflows.yml | |
secrets: inherit | |
with: | |
bridged: false | |
provider_name: ${{ github.event.inputs.provider_name }} | |
automerge: false | |
caller_workflow: "rollout-single-native-provider-workflow" | |