Skip to content

[Bug] Error: User has not verified their email #1052

[Bug] Error: User has not verified their email

[Bug] Error: User has not verified their email #1052

Workflow file for this run

on:
issues:
types:
- opened
workflow_dispatch:
concurrency: add-link
jobs:
update_issue:
runs-on: ubuntu-latest
permissions:
# Give the default GITHUB_TOKEN write permission to commit and push the
# added or changed files to the repository.
contents: write
issues: write
steps:
- uses: actions/checkout@v4
- name: Process new link request
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
shell: pwsh
run: |
Set-PSRepository PSGallery -InstallationPolicy Trusted
Install-Module -Name PowerShellForGitHub
Set-GitHubConfiguration -DisableTelemetry
. ./build/scripts/AkaUtils.ps1
Set-AkaGitHubAuth
Update-AllOpenGitHubIssues
Write-PublicSiteData
git config user.name github-actions
git config user.email github-actions@github.com
git add .
git commit -m "generated"
git push