File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 2
2
on : [push, pull_request]
3
3
jobs :
4
4
test :
5
+ # Avoid running CI more than once on pushes to main repo open PRs
6
+ if : github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
5
7
runs-on : ubuntu-latest
6
8
services :
7
9
postgres :
Original file line number Diff line number Diff line change 1
1
name : Check collectstatic
2
2
on : [push, pull_request]
3
3
jobs :
4
- test :
4
+ collectstatic :
5
+ # Avoid running CI more than once on pushes to main repo open PRs
6
+ if : github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
5
7
runs-on : ubuntu-latest
6
8
steps :
7
9
- name : Check out repository
You can’t perform that action at this time.
0 commit comments