Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Erhardt <eric.erhardt@microsoft.com>2021-09-29 19:41:36 +0300
committerGitHub <noreply@github.com>2021-09-29 19:41:36 +0300
commit8e4c996ae35aa803813a89faebb03eb01821c1a2 (patch)
treef083bbb1ee9390fc50f8cce9712265b5f07dbe8b /.github
parent37ceb3c260a7f9030a64890ba67389cd1c5794de (diff)
Add initial codespaces support for dotnet/runtime (#59723)
* Add initial codespaces support for dotnet/runtime * Enable codespaces-prebuild
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/create-codespaces-prebuild.yml17
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/create-codespaces-prebuild.yml b/.github/workflows/create-codespaces-prebuild.yml
new file mode 100644
index 00000000000..6b55740121c
--- /dev/null
+++ b/.github/workflows/create-codespaces-prebuild.yml
@@ -0,0 +1,17 @@
+name: Create Codespaces Prebuild
+on:
+ schedule:
+ # Run at 06:00 am UTC every day
+ - cron: '0 6 * * *'
+ workflow_dispatch:
+jobs:
+ createPrebuild:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - uses: github/codespaces-precache@v1.0.1
+ with:
+ regions: WestUs2
+ sku_name: standardLinux32gb
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}