From bc6f0fceca6232648e5935b19dd9f1f82c1c7c06 Mon Sep 17 00:00:00 2001 From: Pierre Jacquier Date: Tue, 4 Feb 2025 17:33:34 -0500 Subject: [PATCH] Allow snapshot bot to trigger CI (#5253) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * WIP: allow snapshot bot to trigger CI * To revert: change toolbars button order to trigger snapshots * A snapshot a day keeps the bugs away! 📷🐛 (OS: namespace-profile-ubuntu-8-cores) * Revert "To revert: change toolbars button order to trigger snapshots" This reverts commit d6e2550921bb58722b20c8355ca683084583f6b9. * A snapshot a day keeps the bugs away! 📷🐛 (OS: namespace-profile-ubuntu-8-cores) * Clean up identical snaps * A snapshot a day keeps the bugs away! 📷🐛 (OS: namespace-profile-ubuntu-8-cores) * bad bot --------- Co-authored-by: github-actions[bot] --- .github/workflows/e2e-tests.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 3e52c87be..c9fc5d008 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -46,7 +46,15 @@ jobs: runs-on: ${{ matrix.os }} needs: check-rust-changes steps: + - uses: actions/create-github-app-token@v1 + id: app-token + with: + app-id: ${{ secrets.GH_ORG_APP_ID }} + private-key: ${{ secrets.GH_ORG_APP_PRIVATE_KEY }} + owner: ${{ github.repository_owner }} - uses: actions/checkout@v4 + with: + token: ${{ steps.app-token.outputs.token }} - uses: actions/setup-node@v4 with: node-version-file: '.nvmrc'