From ce81897855c7f75e4489ece9d2ed285f32faa8f3 Mon Sep 17 00:00:00 2001 From: Robert Sese Date: Thu, 3 Feb 2022 14:33:43 -0600 Subject: [PATCH] Delete codespaces-prebuild.yml (#25007) --- .github/workflows/codespaces-prebuild.yml | 30 ----------------------- 1 file changed, 30 deletions(-) delete mode 100644 .github/workflows/codespaces-prebuild.yml diff --git a/.github/workflows/codespaces-prebuild.yml b/.github/workflows/codespaces-prebuild.yml deleted file mode 100644 index 1a31b163ca..0000000000 --- a/.github/workflows/codespaces-prebuild.yml +++ /dev/null @@ -1,30 +0,0 @@ -name: Prebuild Codespaces - -# **What it does**: Prebuild the Codespaces image using powerful machines. -# See https://github.com/github/codespaces-precache#readme for more details. -# IMPORTANT: Requires we set a `EXPERIMENTAL_CODESPACE_CACHE_TOKEN` Codespaces -# Secret (NOT an Actions Secret) in the repository. -# **Why we have it**: Reduces startup time when booting Codespaces. -# **Who does it impact**: Any Docs contributors who want to use Codespaces. - -on: - push: - branches: - - main - workflow_dispatch: - -# Currently requires write, but in the future will only require read -permissions: - contents: write - -jobs: - createPrebuild: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579 - - uses: github/codespaces-precache@2ad40630d7e3e45e8725d6a74656cb6dd17363dc - with: - regions: WestUs2 EastUs WestEurope SouthEastAsia - sku_name: basicLinux32gb - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}