JB Plugins Platform Update #249
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: JB Plugins Platform Update | |
on: | |
workflow_dispatch: | |
schedule: | |
# At 11:00 on every day-of-week from Monday through Friday. | |
- cron: "0 11 * * 1-5" | |
jobs: | |
update-latest-backend-plugin: | |
uses: ./.github/workflows/jetbrains-update-plugin-platform-template.yml | |
with: | |
pluginName: JetBrains Backend Plugin (EAP) | |
pluginId: latest-backend-plugin | |
xpath: "(/html/body/table[preceding::h2/text()='com.jetbrains.intellij.idea'][1]/tbody/tr/td[contains(text(),'-EAP-CANDIDATE-SNAPSHOT') and starts-with(text(),'MAJOR_VERSION_PLACEHOLDER')]/text())[1]" | |
gradlePropertiesPath: components/ide/jetbrains/backend-plugin/gradle-latest.properties | |
secrets: | |
slackWebhook: ${{ secrets.IDE_SLACK_WEBHOOK }} | |
roboquatRepoPat: ${{ secrets.ROBOQUAT_REPO_PAT }} | |
update-latest-gateway-plugin: | |
uses: ./.github/workflows/jetbrains-update-plugin-platform-template.yml | |
with: | |
pluginName: JetBrains Gateway Plugin (EAP) | |
pluginId: latest-gateway-plugin | |
xpath: "(/html/body/table[preceding::h2/text()='com.jetbrains.gateway'][1]/tbody/tr/td[contains(text(),'-CUSTOM-SNAPSHOT') and starts-with(text(),'MAJOR_VERSION_PLACEHOLDER') and not(contains(text(),'-NIGHTLY'))]/text())[1]" | |
gradlePropertiesPath: components/ide/jetbrains/gateway-plugin/gradle-latest.properties | |
secrets: | |
slackWebhook: ${{ secrets.IDE_SLACK_WEBHOOK }} | |
roboquatRepoPat: ${{ secrets.ROBOQUAT_REPO_PAT }} | |
update-stable-gateway-plugin: | |
uses: ./.github/workflows/jetbrains-update-plugin-platform-template.yml | |
with: | |
pluginName: JetBrains Gateway Plugin (Stable) | |
pluginId: stable-gateway-plugin | |
xpath: "(/html/body/table[preceding::h2/text()='com.jetbrains.gateway'][1]/tbody/tr/td[contains(text(),'-CUSTOM-SNAPSHOT') and starts-with(text(),'MAJOR_VERSION_PLACEHOLDER') and not(contains(text(),'-NIGHTLY'))]/text())[1]" | |
gradlePropertiesPath: components/ide/jetbrains/gateway-plugin/gradle-stable.properties | |
secrets: | |
slackWebhook: ${{ secrets.IDE_SLACK_WEBHOOK }} | |
roboquatRepoPat: ${{ secrets.ROBOQUAT_REPO_PAT }} |