File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -32,14 +32,17 @@ jobs:
32
32
- source_centos
33
33
steps :
34
34
- name : Check out the codebase
35
+ if : " !(contains(matrix.scenario, 'plus') && github.event.pull_request.head.repo.full_name != github.repository)"
35
36
uses : actions/checkout@v2
36
37
37
38
- name : Set up Python 3
39
+ if : " !(contains(matrix.scenario, 'plus') && github.event.pull_request.head.repo.full_name != github.repository)"
38
40
uses : actions/setup-python@v2
39
41
with :
40
42
python-version : 3.x
41
43
42
44
- name : Install Molecule dependencies
45
+ if : " !(contains(matrix.scenario, 'plus') && github.event.pull_request.head.repo.full_name != github.repository)"
43
46
run : |
44
47
pip3 install ansible-base==2.10.3
45
48
pip3 install ansible==2.10.3
49
52
pip3 install docker==4.4.0
50
53
51
54
- name : Run Molecule tests
55
+ if : " !(contains(matrix.scenario, 'plus') && github.event.pull_request.head.repo.full_name != github.repository)"
52
56
run : molecule test -s ${{ matrix.scenario }}
53
- if : contains(${{ matrix.scenario }}, "plus") && !(github.event_name == "pull_request" && github.event.pull_request.head.repo.fork)
54
57
env :
55
58
PY_COLORS : " 1"
56
59
ANSIBLE_FORCE_COLOR : " 1"
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
- ## 0.19.0 (Unreleased)
3
+ ## 0.19.1 (Unreleased)
4
+
5
+ ENHANCEMENTS:
6
+
7
+ The GitHub actions Molecule CI/CD workflow should now correctly avoid running 'plus' related tests on external PRs.
8
+
9
+ ## 0.19.0 (December 23, 2020)
4
10
5
11
BREAKING CHANGES:
6
12
You can’t perform that action at this time.
0 commit comments