-
Notifications
You must be signed in to change notification settings - Fork 1.2k
37 lines (37 loc) · 1.41 KB
/
jetbrains-update-plugin-platform.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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
taskId: 1
isBackendPlugin: true
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
taskId: 2
isBackendPlugin: false
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
taskId: 3
isBackendPlugin: false
secrets:
slackWebhook: ${{ secrets.IDE_SLACK_WEBHOOK }}
roboquatRepoPat: ${{ secrets.ROBOQUAT_REPO_PAT }}