Skip to content

Commit

Permalink
Add GITHUB_TOKEN to all workflow steps
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaseberle committed Jul 9, 2023
1 parent 60d0954 commit b6ea982
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build-tiles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@ jobs:
if: needs.build.outputs.done == 'false'
needs: build
runs-on: ubuntu-22.04
env:
DEBIAN_FRONTEND: noninteractive
TZ: America/NewYork
GH_TOKEN: ${{ github.token }}

outputs:
done: ${{ steps.rebuild.outputs.done }}
Expand Down Expand Up @@ -161,6 +165,10 @@ jobs:
if: needs.rebuild.outputs.done == 'false'
needs: rerun
runs-on: ubuntu-22.04
env:
DEBIAN_FRONTEND: noninteractive
TZ: America/NewYork
GH_TOKEN: ${{ github.token }}

outputs:
done: ${{ steps.rebuild.outputs.done }}
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/push-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ on:
jobs:
ziplist:
runs-on: ubuntu-22.04
env:
DEBIAN_FRONTEND: noninteractive
TZ: America/NewYork
GH_TOKEN: ${{ github.token }}
outputs:
chunks: ${{ steps.chunks.outputs.chunks }}
steps:
Expand Down Expand Up @@ -61,6 +65,10 @@ jobs:
environment: release

runs-on: ubuntu-22.04
env:
DEBIAN_FRONTEND: noninteractive
TZ: America/NewYork
GH_TOKEN: ${{ github.token }}
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
jobs:
ziplist:
runs-on: ubuntu-22.04
env:
DEBIAN_FRONTEND: noninteractive
TZ: America/NewYork
GH_TOKEN: ${{ github.token }}
outputs:
chunks: ${{ steps.chunks.outputs.chunks }}
steps:
Expand Down

0 comments on commit b6ea982

Please sign in to comment.