From 567e22318394d63ea75395cd9777402b89de5071 Mon Sep 17 00:00:00 2001 From: Henrik Grimler Date: Wed, 2 Feb 2022 14:14:57 +0100 Subject: [PATCH] Revert "github actions: use per-repository token for automatic package updates workflow" This reverts commit fc95ff7881316188b5fb2c66650736ff5b531ec1. Unfortunately GITHUB_TOKEN authentication cannot start other action (recent automatic update pushes haven't been built), so switch back to a new personal access token (generated by me). Ref: https://stackoverflow.com/a/67551255 --- .github/workflows/package_updates.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/package_updates.yml b/.github/workflows/package_updates.yml index 2658eb698..0a048f9aa 100644 --- a/.github/workflows/package_updates.yml +++ b/.github/workflows/package_updates.yml @@ -14,10 +14,10 @@ jobs: uses: actions/checkout@v2 with: fetch-depth: 0 - token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.GH_API_KEY }} - name: Process package updates env: - GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_API_TOKEN: ${{ secrets.GH_API_KEY }} BUILD_PACKAGES: "true" GIT_COMMIT_PACKAGES: "true" GIT_PUSH_PACKAGES: "true"