File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 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
112115env :
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
You can’t perform that action at this time.
0 commit comments