generated from JetBrains/intellij-platform-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 7
38 lines (34 loc) · 1 KB
/
build-pull-request.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
name: Build on pull request to main
on:
pull_request:
branches: [ main ]
jobs:
build-workflow:
strategy:
matrix:
profile: [ p231, p232, p233, p241, p242, p243 ]
uses: ./.github/workflows/build-workflow.yml
with:
build-profile: ${{ matrix.profile }}
ref-name: ${{ github.event.pull_request.head.sha }}
build-with-rider: false
secrets: inherit
build-workflow-with-rider:
strategy:
matrix:
profile: [ p231, p232, p233, p241, p242, p243 ]
uses: ./.github/workflows/build-workflow.yml
with:
build-profile: ${{ matrix.profile }}
ref-name: ${{ github.event.pull_request.head.sha }}
build-with-rider: true
secrets: inherit
plugin-verifier-workflow:
strategy:
matrix:
profile: [ p231, p232, p233, p241, p242, p243 ]
uses: ./.github/workflows/plugin-verifier-workflow.yml
with:
build-profile: ${{ matrix.profile }}
ref-name: ${{ github.event.pull_request.head.sha }}
secrets: inherit