From 101ab5d2fae36664c4dc7fcb6f9acebe151ee5b5 Mon Sep 17 00:00:00 2001 From: Marc Campbell Date: Thu, 11 Nov 2021 21:32:21 +0000 Subject: [PATCH] Add github action for codespace --- .github/workflows/codespaces.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/codespaces.yaml diff --git a/.github/workflows/codespaces.yaml b/.github/workflows/codespaces.yaml new file mode 100644 index 00000000..a8870a01 --- /dev/null +++ b/.github/workflows/codespaces.yaml @@ -0,0 +1,19 @@ +name: prebuild codespace +on: + push: + branches: + - master + - codespaces-sandbox + workflow_dispatch: + +jobs: + createPrebuild: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: github/codespaces-precache@v1-stable + with: + regions: WestUs2 EastUs WestEurope SouthEastAsia + sku_name: premiumLinux + env: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} \ No newline at end of file