mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-25 20:57:12 +00:00
29 lines
794 B
YAML
29 lines
794 B
YAML
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-prebuilds-bot/codespaces/prebuild'
|
|
Method = 'POST'
|
|
Headers = @{
|
|
'Content-Type' = 'application/json; charset=utf-8'
|
|
'Authorization' = 'token ${{ secrets.CODESPACES_PREBUILD_PAT }}'
|
|
}
|
|
Body = @{
|
|
ref = 'main'
|
|
repository_id = 41881900
|
|
location = 'WestUs2'
|
|
} | ConvertTo-Json
|
|
}
|
|
|
|
Invoke-RestMethod @splat
|
|
shell: pwsh
|