-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[internal] Update GitHub Actions workflow files
- Loading branch information
1 parent
2e80935
commit 8174ae6
Showing
1 changed file
with
18 additions
and
7 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 |
---|---|---|
|
@@ -9,15 +9,26 @@ jobs: | |
name: upgrade-provider | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Call upgrade provider action | ||
uses: pulumi/[email protected] | ||
with: | ||
kind: all | ||
email: [email protected] | ||
username: pulumi-bot | ||
- name: Checkout Repo | ||
uses: actions/checkout@v4 | ||
- name: Setup tools | ||
uses: ./.github/actions/setup-tools | ||
with: | ||
tools: pulumictl, pulumicli, go, nodejs, dotnet, python, java | ||
- name: Install upgrade-provider | ||
run: go install github.com/pulumi/upgrade-provider@main | ||
shell: bash | ||
- name: "Set up git identity: name" | ||
run: | | ||
git config --global user.name '[email protected]' | ||
git config --global user.email '[email protected]' | ||
shell: bash | ||
- name: Run upgrade-provider | ||
run: upgrade-provider "${{ github.repository }}" --kind="all" | ||
shell: bash | ||
name: Upgrade provider | ||
on: | ||
issues: | ||
types: | ||
- opened | ||
- opened | ||
workflow_dispatch: {} |