From 6b7d809253058c54801f0fa8289f53b5a205cc34 Mon Sep 17 00:00:00 2001 From: Pulumi Bot <30351955+pulumi-bot@users.noreply.github.com> Date: Tue, 15 Oct 2024 22:29:31 -0700 Subject: [PATCH] Update GitHub Actions workflows. (#672) This PR was automatically generated by the update-workflows-ecosystem-providers workflow in the pulumi/ci-mgmt repo, from commit 7aabad15419dfed0ca672a9b3a96c75a1b81dd77. --- .github/workflows/master.yml | 2 ++ .github/workflows/prerelease.yml | 2 ++ .github/workflows/publish.yml | 2 +- .github/workflows/release.yml | 3 +++ .github/workflows/run-acceptance-tests.yml | 23 +++++++++++++--------- 5 files changed, 22 insertions(+), 10 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index a20cab04c..204bf3fde 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -88,6 +88,8 @@ jobs: publish: name: publish + permissions: + contents: write needs: - prerequisites - build_provider diff --git a/.github/workflows/prerelease.yml b/.github/workflows/prerelease.yml index 983d0de0e..754dce72a 100644 --- a/.github/workflows/prerelease.yml +++ b/.github/workflows/prerelease.yml @@ -51,6 +51,8 @@ jobs: publish: name: publish + permissions: + contents: write needs: - prerequisites - build_provider diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e7b4fde3e..8ed952e6d 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -102,7 +102,7 @@ jobs: generate_release_notes: true files: dist/* env: - GITHUB_TOKEN: ${{ secrets.PULUMI_BOT_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} publish_sdk: name: publish_sdk diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 480185f15..f0b0f586a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -56,6 +56,9 @@ jobs: publish: name: publish + permissions: + contents: write + pull-requests: write needs: - prerequisites - build_provider diff --git a/.github/workflows/run-acceptance-tests.yml b/.github/workflows/run-acceptance-tests.yml index 8a3597a0f..88c167664 100644 --- a/.github/workflows/run-acceptance-tests.yml +++ b/.github/workflows/run-acceptance-tests.yml @@ -1,5 +1,15 @@ # WARNING: This file is autogenerated - changes will be overwritten if not made via https://github.com/pulumi/ci-mgmt +name: run-acceptance-tests + +on: + pull_request: + paths-ignore: + - CHANGELOG.md + repository_dispatch: + types: + - run-acceptance-tests-command + env: PR_COMMIT_SHA: ${{ github.event.client_payload.pull_request.head.sha }} DATADOG_API_KEY: ${{ secrets.DATADOG_API_KEY }} @@ -25,6 +35,7 @@ env: concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true + jobs: prerequisites: if: github.event_name == 'repository_dispatch' || @@ -56,6 +67,8 @@ jobs: comment-notification: if: github.event_name == 'repository_dispatch' name: comment-notification + permissions: + pull-requests: write runs-on: ubuntu-latest steps: - id: run-url @@ -67,7 +80,7 @@ jobs: body: "Please view the PR build: ${{ steps.run-url.outputs.run-url }}" issue-number: ${{ github.event.client_payload.github.payload.issue.number }} repository: ${{ github.event.client_payload.github.payload.repository.full_name }} - token: ${{ secrets.PULUMI_BOT_TOKEN }} + token: ${{ secrets.GITHUB_TOKEN }} sentinel: name: sentinel if: github.event_name == 'repository_dispatch' || @@ -167,11 +180,3 @@ jobs: name: License Check uses: ./.github/workflows/license.yml secrets: inherit -name: run-acceptance-tests -on: - pull_request: - paths-ignore: - - CHANGELOG.md - repository_dispatch: - types: - - run-acceptance-tests-command