Skip to content

Commit

Permalink
Create create-codespaces-prebuild.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerLeonhardt authored Jul 6, 2021
1 parent f5e9925 commit 7acbd6a
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/create-codespaces-prebuild.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 7acbd6a

Please sign in to comment.