Skip to content

Update GH workflows, single native provider #112

Update GH workflows, single native provider

Update GH workflows, single native provider #112

# 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"