From 280008c91aaa89aad4b0d9308722b0dfd2c6ced8 Mon Sep 17 00:00:00 2001 From: Sean Holung Date: Wed, 20 Sep 2023 13:03:43 -0400 Subject: [PATCH] fix bucket cleanup job (#9876) --- .github/workflows/bucket-cleanup.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/bucket-cleanup.yml b/.github/workflows/bucket-cleanup.yml index e6741f2cf090..2853f0f1898f 100644 --- a/.github/workflows/bucket-cleanup.yml +++ b/.github/workflows/bucket-cleanup.yml @@ -12,6 +12,7 @@ jobs: env: GOPATH: ${{ github.workspace }}/go name: Bucket cleanup + environment: production runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 @@ -40,5 +41,6 @@ jobs: run: make ci_bucket_cleanup env: PULUMI_ACCESS_TOKEN: ${{ secrets.PULUMI_ACCESS_TOKEN }} + PULUMI_STACK_NAME: ${{ vars.PULUMI_STACK_NAME }} SLACK_ACCESS_TOKEN: ${{ secrets.SLACK_ACCESS_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}