Open zarfld opened 4 weeks ago
Related to #141
Update the Check GitHub Actions Permissions step in .github/workflows/ci.yml to use the correct PowerShell syntax.
Check GitHub Actions Permissions
.github/workflows/ci.yml
if [ -z "${{ github.token }}" ]; then
if ($env:GITHUB_TOKEN -eq $null) {
else
} else {
fi
}
For more details, open the Copilot Workspace session.
Related to #141
Update the
Check GitHub Actions Permissions
step in.github/workflows/ci.yml
to use the correct PowerShell syntax.if [ -z "${{ github.token }}" ]; then
withif ($env:GITHUB_TOKEN -eq $null) {
else
with} else {
fi
with}
For more details, open the Copilot Workspace session.