diff --git a/.github/workflows/fetch-upstream.yml b/.github/workflows/fetch-upstream.yml new file mode 100644 index 00000000000000..dcf40a39efb4ff --- /dev/null +++ b/.github/workflows/fetch-upstream.yml @@ -0,0 +1,19 @@ +name: Fetch upstream + +on: + push: + schedule: + - cron: "0 16 * * *" + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: GitHub Sync to Upstream Repository + uses: tjusl/sync-upstream-repo@master + with: + upstream_repo: https://github.com/gitpod-io/gitpod.git + upstream_branch: main + local_branch: main + github_token: ${{ secrets.GITPOD_TOKEN }} diff --git a/components/ide/jetbrains/gateway-plugin/gradle.properties b/components/ide/jetbrains/gateway-plugin/gradle.properties index 6622295defe309..544aa30dab9188 100644 --- a/components/ide/jetbrains/gateway-plugin/gradle.properties +++ b/components/ide/jetbrains/gateway-plugin/gradle.properties @@ -14,7 +14,7 @@ pluginVerifierIdeVersions=2022.1, 2022.2 # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#intellij-extension-type platformType=GW # Version from "com.jetbrains.gateway" which can be found at https://www.jetbrains.com/intellij-repository/snapshots -platformVersion=222.3345.108-CUSTOM-SNAPSHOT +platformVersion=222.3633-CUSTOM-SNAPSHOT platformDownloadSources=true # Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html # Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22