We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98de5bf commit 6a3a58cCopy full SHA for 6a3a58c
Actions/ReadSecrets/ReadSecrets.ps1
@@ -179,6 +179,7 @@ try {
179
if ($useGhTokenWorkflowForPush -eq 'true' -and $outSecrets.ghTokenWorkflow) {
180
Write-Host "Use ghTokenWorkflow for Push"
181
$ghToken = [System.Text.Encoding]::UTF8.GetString([System.Convert]::FromBase64String($outSecrets.ghTokenWorkflow))
182
+ $ghToken = GetAccessToken -token $ghToken -permissions @{"actions"="read";"contents"="write";"pull_requests"="write";"metadata"="read";"workflows"="write"}
183
}
184
else {
185
Write-Host "Use github_token for Push"
0 commit comments