Compare commits
6 Commits
update-pul
...
update-git
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
04186ca9ea | ||
|
|
bc97cd1f93 | ||
|
|
3ce46af901 | ||
|
|
1e1cdd0168 | ||
|
|
bce34eb5fe | ||
|
|
3e588b9370 |
@@ -1,7 +1,6 @@
|
|||||||
name: "Comment on stale issues"
|
name: "Comment on stale issues"
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch: {}
|
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "46 4 * * *" # run once per day
|
- cron: "46 4 * * *" # run once per day
|
||||||
|
|
||||||
@@ -10,7 +9,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
name: Stale issue job
|
name: Stale issue job
|
||||||
steps:
|
steps:
|
||||||
- uses: aws-actions/stale-issue-cleanup@db44981197ae9cdada9a9c779c052439f9d62eac
|
- uses: aws-actions/stale-issue-cleanup@5650b49bcd757a078f6ca06c373d7807b773f9bc # v7.1.0
|
||||||
with:
|
with:
|
||||||
issue-types: issues # only look at issues (ignore pull-requests)
|
issue-types: issues # only look at issues (ignore pull-requests)
|
||||||
|
|
||||||
|
|||||||
12
.github/workflows/run-acceptance-tests.yml
vendored
12
.github/workflows/run-acceptance-tests.yml
vendored
@@ -159,6 +159,8 @@ jobs:
|
|||||||
'pull_request'
|
'pull_request'
|
||||||
shell: bash
|
shell: bash
|
||||||
run: >
|
run: >
|
||||||
|
git diff --quiet -- sdk && echo "no changes to sdk" && exit
|
||||||
|
|
||||||
git config --global user.email "bot@pulumi.com"
|
git config --global user.email "bot@pulumi.com"
|
||||||
|
|
||||||
git config --global user.name "pulumi-bot"
|
git config --global user.name "pulumi-bot"
|
||||||
@@ -173,6 +175,7 @@ jobs:
|
|||||||
|
|
||||||
|
|
||||||
# Apply and add our changes, but don't commit any files we expect to
|
# Apply and add our changes, but don't commit any files we expect to
|
||||||
|
|
||||||
# always change due to versioning.
|
# always change due to versioning.
|
||||||
|
|
||||||
git stash pop
|
git stash pop
|
||||||
@@ -190,7 +193,9 @@ jobs:
|
|||||||
|
|
||||||
git commit -m 'Commit SDK for Renovate'
|
git commit -m 'Commit SDK for Renovate'
|
||||||
|
|
||||||
|
|
||||||
# Push with pulumi-bot credentials to trigger a re-run of the
|
# Push with pulumi-bot credentials to trigger a re-run of the
|
||||||
|
|
||||||
# workflow. https://github.com/orgs/community/discussions/25702
|
# workflow. https://github.com/orgs/community/discussions/25702
|
||||||
|
|
||||||
git push https://pulumi-bot:${{ steps.esc-secrets.outputs.PULUMI_BOT_TOKEN }}@github.com/${{ github.repository }} "HEAD:$HEAD_REF"
|
git push https://pulumi-bot:${{ steps.esc-secrets.outputs.PULUMI_BOT_TOKEN }}@github.com/${{ github.repository }} "HEAD:$HEAD_REF"
|
||||||
@@ -311,6 +316,8 @@ jobs:
|
|||||||
'pull_request'
|
'pull_request'
|
||||||
shell: bash
|
shell: bash
|
||||||
run: >
|
run: >
|
||||||
|
git diff --quiet -- sdk && echo "no changes to sdk" && exit
|
||||||
|
|
||||||
git config --global user.email "bot@pulumi.com"
|
git config --global user.email "bot@pulumi.com"
|
||||||
|
|
||||||
git config --global user.name "pulumi-bot"
|
git config --global user.name "pulumi-bot"
|
||||||
@@ -323,7 +330,9 @@ jobs:
|
|||||||
|
|
||||||
git checkout "origin/$HEAD_REF"
|
git checkout "origin/$HEAD_REF"
|
||||||
|
|
||||||
|
|
||||||
# Apply and add our changes, but don't commit any files we expect to
|
# Apply and add our changes, but don't commit any files we expect to
|
||||||
|
|
||||||
# always change due to versioning.
|
# always change due to versioning.
|
||||||
|
|
||||||
git stash pop
|
git stash pop
|
||||||
@@ -342,6 +351,7 @@ jobs:
|
|||||||
git commit -m 'Commit SDK for Renovate'
|
git commit -m 'Commit SDK for Renovate'
|
||||||
|
|
||||||
# Push with pulumi-bot credentials to trigger a re-run of the
|
# Push with pulumi-bot credentials to trigger a re-run of the
|
||||||
|
|
||||||
# workflow. https://github.com/orgs/community/discussions/25702
|
# workflow. https://github.com/orgs/community/discussions/25702
|
||||||
|
|
||||||
git push https://pulumi-bot:${{ steps.esc-secrets.outputs.PULUMI_BOT_TOKEN }}@github.com/${{ github.repository }} "HEAD:$HEAD_REF"
|
git push https://pulumi-bot:${{ steps.esc-secrets.outputs.PULUMI_BOT_TOKEN }}@github.com/${{ github.repository }} "HEAD:$HEAD_REF"
|
||||||
@@ -485,7 +495,7 @@ jobs:
|
|||||||
run: >-
|
run: >-
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
cd examples && go test -count=1 -cover -timeout 2h -tags=${{ matrix.language }} -parallel 4 .
|
cd examples && go test -count=1 -cover -timeout 2h -v -tags=${{ matrix.language }} -parallel 4 .
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- if: failure() && github.event_name == 'push'
|
- if: failure() && github.event_name == 'push'
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
3.213.0
|
3.192.0
|
||||||
|
|||||||
2
go.sum
2
go.sum
@@ -892,6 +892,8 @@ github.com/pulumi/esc v0.20.0 h1:LZn4sjAsI76x10ZuZXXyh2ExGcP7AHmjOzCi/p3/fpQ=
|
|||||||
github.com/pulumi/esc v0.20.0/go.mod h1:h1VjdedI0K84MhMzaR9ZKbEpU6SfZMOZF4ZrVgQyNLY=
|
github.com/pulumi/esc v0.20.0/go.mod h1:h1VjdedI0K84MhMzaR9ZKbEpU6SfZMOZF4ZrVgQyNLY=
|
||||||
github.com/pulumi/inflector v0.2.1 h1:bqyiish3tq//vLeLiEstSFE5K7RNjy/ce47ed4QATu8=
|
github.com/pulumi/inflector v0.2.1 h1:bqyiish3tq//vLeLiEstSFE5K7RNjy/ce47ed4QATu8=
|
||||||
github.com/pulumi/inflector v0.2.1/go.mod h1:HUFCjcPTz96YtTuUlwG3i3EZG4WlniBvR9bd+iJxCUY=
|
github.com/pulumi/inflector v0.2.1/go.mod h1:HUFCjcPTz96YtTuUlwG3i3EZG4WlniBvR9bd+iJxCUY=
|
||||||
|
github.com/pulumi/providertest v0.3.1 h1:vlftr7TZlObh81mL88IhhF0/9ZbLrZZos4NAvR4HUUw=
|
||||||
|
github.com/pulumi/providertest v0.3.1/go.mod h1:fFHUP4/9DRyYnHWiRnwcynMtM/a7hHR/QcJfcuZKO3A=
|
||||||
github.com/pulumi/providertest v0.5.1-0.20251217173405-3861778549dd h1:rhn4v3qxovNULvz04qrO5HXVvFuRrYvP6CrjgxdaBWM=
|
github.com/pulumi/providertest v0.5.1-0.20251217173405-3861778549dd h1:rhn4v3qxovNULvz04qrO5HXVvFuRrYvP6CrjgxdaBWM=
|
||||||
github.com/pulumi/providertest v0.5.1-0.20251217173405-3861778549dd/go.mod h1:OBpIGSQrw1FW9VNaHBtKCRxEoTISvx8JsxECmRqRgRQ=
|
github.com/pulumi/providertest v0.5.1-0.20251217173405-3861778549dd/go.mod h1:OBpIGSQrw1FW9VNaHBtKCRxEoTISvx8JsxECmRqRgRQ=
|
||||||
github.com/pulumi/pulumi-dotnet/pulumi-language-dotnet/v3 v3.0.0-20250806132441-44ca9a522cef h1:cxRa9R9To6OYKacIG2Em6zcM7BDNr6joC43uiV1lSVY=
|
github.com/pulumi/pulumi-dotnet/pulumi-language-dotnet/v3 v3.0.0-20250806132441-44ca9a522cef h1:cxRa9R9To6OYKacIG2Em6zcM7BDNr6joC43uiV1lSVY=
|
||||||
|
|||||||
Reference in New Issue
Block a user