Create create-codespaces-prebuild.yml

This commit is contained in:
Tyler James Leonhardt 2021-07-06 15:12:28 -07:00 committed by GitHub
parent f5e9925a8b
commit 7acbd6a083
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,28 @@
name: Create Prebuild
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
createPrebuild:
runs-on: ubuntu-latest
steps:
- id: create-prebuild-production
run: |
$splat = @{
ErrorAction = 'Stop'
Uri = 'https://api.github.com/vscs_internal/user/vscode-triage-bot/codespaces/prebuild'
Headers = @{
'Content-Type' = 'application/json; charset=utf-8'
'Authorization' = 'token ${{ secrets.VSCODE_ISSUE_TRIAGE_BOT_PAT }}'
}
Body = @{
ref = 'main'
repository_id = 41881900
location = 'WestUs2'
vscs_target = 'production'
} | ConvertTo-Json
}
Invoke-RestMethod @splat
shell: pwsh