Skip to content

Commit 34626ca

Browse files
Rename GitHub Actions job names for clarity and consistency
1 parent 5798bc8 commit 34626ca

4 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/kics.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
schedule:
1818
- cron: '15 6 * * 4'
1919
jobs:
20-
kics:
20+
security_scan:
2121
if: github.event.pull_request.draft == false
2222
runs-on: ubuntu-latest
2323

.github/workflows/test_plugins.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
- '.github/workflows/test_plugins.yml'
2121

2222
jobs:
23-
sanity_ansible_18_19:
23+
sanity_core_2_18_2_19:
2424
if: github.event.pull_request.draft == false
2525
runs-on: ubuntu-latest
2626
env:
@@ -63,7 +63,7 @@ jobs:
6363
PY_COLORS: '1'
6464
ANSIBLE_FORCE_COLOR: '1'
6565

66-
sanity_ansible_20:
66+
sanity_core_2_20:
6767
if: github.event.pull_request.draft == false
6868
runs-on: ubuntu-latest
6969
env:
@@ -105,10 +105,10 @@ jobs:
105105
PY_COLORS: '1'
106106
ANSIBLE_FORCE_COLOR: '1'
107107

108-
unit-test:
108+
unit_tests:
109109
needs:
110-
- sanity_ansible_18_19
111-
- sanity_ansible_20
110+
- sanity_core_2_18_2_19
111+
- sanity_core_2_20
112112
runs-on: ubuntu-latest
113113
env:
114114
COLLECTION_NAMESPACE: netways
@@ -149,7 +149,7 @@ jobs:
149149
ANSIBLE_FORCE_COLOR: '1'
150150

151151
molecule_plugins:
152-
needs: unit-test
152+
needs: unit_tests
153153
runs-on: ubuntu-latest
154154
env:
155155
COLLECTION_NAMESPACE: netways
@@ -195,8 +195,8 @@ jobs:
195195
ANSIBLE_FORCE_COLOR: '1'
196196
ELASTIC_RELEASE: ${{ matrix.release }}
197197

198-
python-cryptography:
199-
needs: unit-test
198+
cryptography_compatibility:
199+
needs: unit_tests
200200
runs-on: ubuntu-latest
201201
env:
202202
COLLECTION_NAMESPACE: netways

.github/workflows/test_role_logstash.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
rolename: logstash
2727

2828

29-
molecule_logstash_extended:
29+
molecule_logstash:
3030
runs-on: ubuntu-latest
3131
needs: lint_logstash
3232

.github/workflows/test_roles_pr.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ on:
2424
merge_group:
2525

2626
jobs:
27-
lint_full:
27+
lint_collection:
2828
if: github.event.pull_request.draft == false
2929
uses: ./.github/workflows/test_linting.yml
3030
with:
3131
rolename: ''
3232

33-
molecule_full_stack_ansible_19:
33+
molecule_core_2_19:
3434
runs-on: ubuntu-latest
35-
needs: lint_full
35+
needs: lint_collection
3636

3737
env:
3838
COLLECTION_NAMESPACE: netways
@@ -85,9 +85,9 @@ jobs:
8585
ELASTIC_RELEASE: ${{ matrix.release }}
8686

8787

88-
molecule_full_stack_ansible_20:
88+
molecule_core_2_20:
8989
runs-on: ubuntu-latest
90-
needs: lint_full
90+
needs: lint_collection
9191

9292
env:
9393
COLLECTION_NAMESPACE: netways

0 commit comments

Comments
 (0)