Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/sync-upstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,11 @@ jobs:
if: steps.target.outputs.skip == 'false' && steps.merge.outputs.result == 'success'
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Pin gh to this fork. Without this, gh resolves the default repo
# from git remotes and prefers the one named "upstream"
# (blockscout/frontend, added earlier in this job), so release
# create/delete hits the upstream repo and fails with HTTP 403.
GH_REPO: ${{ github.repository }}
run: |
TAG="${{ steps.target.outputs.tag }}"
# Delete existing release if any (from upstream fork sync)
Expand Down
Loading