Upgrade bridge #30
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
name: Upgrade bridge | |
on: | |
workflow_dispatch: | |
schedule: | |
# At 05:00 on Monday | |
- cron: 0 5 * * 1 | |
jobs: | |
upgrade_bridge: | |
name: upgrade-bridge | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
issues: write | |
steps: | |
- name: Call upgrade provider action | |
uses: pulumi/pulumi-upgrade-provider-action@f399a75a5350242c291cc720eece1c72cb6ea712 # v0.0.12 | |
with: | |
kind: bridge | |
email: ringo@de-smet.name | |
username: "Ringo De Smet" | |
env: | |
GH_TOKEN: ${{ secrets.UPGRADE_PROVIDER_TOKEN }} |