File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change 7
7
tags : [v*]
8
8
jobs :
9
9
ci :
10
- # run on external PRs, but not on internal PRs since those will be run by push to branch
11
- if : github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
10
+ # run on 1) push, 2) external PRs, 3) softwaremill-ci PRs
11
+ # do not run on internal, non-steward PRs since those will be run by push to branch
12
+ if : |
13
+ github.event_name == 'push' ||
14
+ github.event.pull_request.head.repo.full_name != github.repository ||
15
+ github.event.pull_request.user.login == 'softwaremill-ci'
12
16
runs-on : ubuntu-20.04
13
17
env :
14
18
STTP_NATIVE : 1
45
49
find $HOME/.sbt -name "*.lock" -delete || true
46
50
47
51
mima :
48
- # run on external PRs, but not on internal PRs since those will be run by push to branch
49
- if : github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
52
+ # run on 1) push, 2) external PRs, 3) softwaremill-ci PRs
53
+ # do not run on internal, non-steward PRs since those will be run by push to branch
54
+ if : |
55
+ github.event_name == 'push' ||
56
+ github.event.pull_request.head.repo.full_name != github.repository ||
57
+ github.event.pull_request.user.login == 'softwaremill-ci'
50
58
runs-on : ubuntu-20.04
51
59
steps :
52
60
- name : Set Java Opts
You can’t perform that action at this time.
0 commit comments