forked from gitpod-io/gitpod
-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (47 loc) · 1.4 KB
/
jetbrains-updates.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
38
39
40
41
42
43
44
45
46
47
48
name: JB Releases
on:
workflow_dispatch:
schedule:
# At 11:00 on every day-of-week from Monday through Friday.
- cron: "0 11 * * 1-5"
jobs:
intellij:
uses: ./.github/workflows/jetbrains-updates-template.yml
with:
productName: IntelliJ IDEA
productId: intellij
productCode: IIU
productType: release
exampleRepo: https://github.com/gitpod-io/spring-petclinic
secrets:
slackWebhook: ${{ secrets.IDE_SLACK_WEBHOOK }}
goland:
uses: ./.github/workflows/jetbrains-updates-template.yml
with:
productName: GoLand
productId: goland
productCode: GO
productType: release
exampleRepo: https://github.com/gitpod-io/template-golang-cli
secrets:
slackWebhook: ${{ secrets.IDE_SLACK_WEBHOOK }}
pycharm:
uses: ./.github/workflows/jetbrains-updates-template.yml
with:
productName: PyCharm
productId: pycharm
productCode: PCP
productType: release
exampleRepo: https://github.com/gitpod-io/template-python-django
secrets:
slackWebhook: ${{ secrets.IDE_SLACK_WEBHOOK }}
phpstorm:
uses: ./.github/workflows/jetbrains-updates-template.yml
with:
productName: PhpStorm
productId: phpstorm
productCode: PS
productType: release
exampleRepo: https://github.com/gitpod-io/template-php-laravel-mysql
secrets:
slackWebhook: ${{ secrets.IDE_SLACK_WEBHOOK }}