File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -22,14 +22,17 @@ jobs:
2222 - default
2323 steps :
2424 - name : Check out the codebase
25+ if : github.event.pull_request.head.repo.full_name == github.repository
2526 uses : actions/checkout@v2
2627
2728 - name : Set up Python 3
29+ if : github.event.pull_request.head.repo.full_name == github.repository
2830 uses : actions/setup-python@v2
2931 with :
3032 python-version : 3.x
3133
3234 - name : Install Molecule dependencies
35+ if : github.event.pull_request.head.repo.full_name == github.repository
3336 run : |
3437 pip3 install ansible-base==2.10.3
3538 pip3 install ansible==2.10.3
3942 pip3 install docker==4.4.0
4043
4144 - name : Run Molecule tests
45+ if : github.event.pull_request.head.repo.full_name == github.repository
4246 run : molecule test -s ${{ matrix.scenario }}
43- if : contains(${{ matrix.scenario }}, "plus") && !(github.event_name == "pull_request" && github.event.pull_request.head.repo.fork)
4447 env :
4548 PY_COLORS : " 1"
4649 ANSIBLE_FORCE_COLOR : " 1"
You can’t perform that action at this time.
0 commit comments