Skip to content

Commit b73fc76

Browse files
chore: debug missing authentication
1 parent b7eeb7d commit b73fc76

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/REUSABLE_frontend.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,9 @@ on:
108108
composer_auth:
109109
description: The Composer auth tokens to use for private packages.
110110
required: false
111+
git_actor_token:
112+
description: The Personal Access Token forthe git actor.
113+
required: false
111114

112115
env:
113116
COMPOSER_ROOT_VERSION: dev-main
@@ -119,13 +122,18 @@ jobs:
119122
build:
120123
name: Checks & Build
121124
runs-on: ${{ inputs.runner_type }}
125+
env:
126+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
127+
GIT_ACTOR_TOKEN: ${{ secrets.git_actor_token }}
122128

123129
if: >-
124130
((github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != github.repository) || github.event_name != 'pull_request')
125131
126132
steps:
127133
- name: Check out code
128134
uses: actions/checkout@v3
135+
with:
136+
token: ${{ secrets.GIT_ACTOR_TOKEN }}
129137

130138
- name: Set up Node
131139
uses: actions/setup-node@v3

0 commit comments

Comments
 (0)