Remove prebuild workflow (#18028)

This commit is contained in:
Charles Gagnon
2022-01-07 17:00:18 -08:00
committed by GitHub
parent 5d6ee47ee3
commit c1583a0de0

View File

@@ -1,28 +0,0 @@
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