Revert "github actions: use per-repository token for automatic package updates workflow"
This reverts commit fc95ff7881
.
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
This commit is contained in:
parent
4f75038038
commit
567e223183
4
.github/workflows/package_updates.yml
vendored
4
.github/workflows/package_updates.yml
vendored
@ -14,10 +14,10 @@ jobs:
|
|||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
token: ${{ secrets.GH_API_KEY }}
|
||||||
- name: Process package updates
|
- name: Process package updates
|
||||||
env:
|
env:
|
||||||
GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_API_TOKEN: ${{ secrets.GH_API_KEY }}
|
||||||
BUILD_PACKAGES: "true"
|
BUILD_PACKAGES: "true"
|
||||||
GIT_COMMIT_PACKAGES: "true"
|
GIT_COMMIT_PACKAGES: "true"
|
||||||
GIT_PUSH_PACKAGES: "true"
|
GIT_PUSH_PACKAGES: "true"
|
||||||
|
Loading…
Reference in New Issue
Block a user