From 13e601e35c43ad640fbe2bfea57e9a054f1dca4c Mon Sep 17 00:00:00 2001 From: David Sanders Date: Wed, 28 Feb 2024 21:36:56 -0800 Subject: [PATCH] ci: verified commits for appveyor update PR (#41470) --- .github/workflows/update_appveyor_image.yml | 41 ++++++++++----------- 1 file changed, 20 insertions(+), 21 deletions(-) diff --git a/.github/workflows/update_appveyor_image.yml b/.github/workflows/update_appveyor_image.yml index 5eba50527a7c..3c53800c730e 100644 --- a/.github/workflows/update_appveyor_image.yml +++ b/.github/workflows/update_appveyor_image.yml @@ -6,22 +6,23 @@ on: schedule: - cron: '0 8 * * 1-5' # runs 8:00 every business day (see https://crontab.guru) -permissions: - contents: write - pull-requests: write +permissions: {} jobs: bake-appveyor-image: name: Bake AppVeyor Image - permissions: - contents: write - pull-requests: write # to create a new PR with updated Appveyor images runs-on: ubuntu-latest steps: + - name: Generate GitHub App token + uses: electron/github-app-auth-action@384fd19694fe7b6dcc9a684746c6976ad78228ae # v1.1.1 + id: generate-token + with: + creds: ${{ secrets.APPVEYOR_UPDATER_GH_APP_CREDS }} - name: Checkout uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: fetch-depth: 0 + token: ${{ steps.generate-token.outputs.token }} - name: Yarn install run: | node script/yarn.js install --frozen-lockfile @@ -49,26 +50,24 @@ jobs: diff -w -B appveyor.yml appveyor2.yml > appveyor.diff || true patch -f appveyor.yml < appveyor.diff rm appveyor2.yml appveyor.diff + git add appveyor.yml - name: (Optionally) Generate Commit Diff for WOA if: ${{ env.APPVEYOR_IMAGE_VERSION }} run: | diff -w -B appveyor-woa.yml appveyor-woa2.yml > appveyor-woa.diff || true patch -f appveyor-woa.yml < appveyor-woa.diff rm appveyor-woa2.yml appveyor-woa.diff - - name: (Optionally) Commit and Pull Request + git add appveyor-woa.yml + - name: (Optionally) Commit to Branch if: ${{ env.APPVEYOR_IMAGE_VERSION }} - uses: peter-evans/create-pull-request@b1ddad2c994a25fbc81a28b3ec0e368bb2021c50 # v6.0.0 + uses: dsanders11/github-app-commit-action@1dd0a2d22c564461d3f598b6858856e8842d7a16 # v1.1.0 with: - token: ${{ secrets.GITHUB_TOKEN }} - commit-message: 'build: update appveyor image to latest version' - committer: GitHub - author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> - signoff: false - branch: bump-appveyor-image - delete-branch: true - reviewers: electron/wg-releases - title: 'build: update appveyor image to latest version' - labels: semver/none,no-backport - body: | - This PR updates appveyor.yml to the latest baked image, ${{ env.APPVEYOR_IMAGE_VERSION }}. - Notes: none + message: 'build: update appveyor image to latest version' + ref: bump-appveyor-image + token: ${{ steps.generate-token.outputs.token }} + - name: (Optionally) Create Pull Request + if: ${{ env.APPVEYOR_IMAGE_VERSION }} + run: | + printf "This PR updates appveyor.yml to the latest baked image, ${{ env.APPVEYOR_IMAGE_VERSION }}.\n\nNotes: none" | gh pr create --head bump-appveyor-image --reviewer electron/wg-releases --label no-backport --label semver/none --title 'build: update appveyor image to latest version' --body-file=- + env: + GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}