Skip to content

Commit 92358c8

Browse files
authored
Maintainance work (#22)
1 parent dbfd6b8 commit 92358c8

3 files changed

Lines changed: 14 additions & 46 deletions

File tree

.github/workflows/lint.yml

Lines changed: 0 additions & 13 deletions
This file was deleted.

.github/workflows/release.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
---
2-
name: Release
3-
4-
on: # yamllint disable-line rule:truthy
2+
name: "Release collection"
3+
on: # yamllint disable-line rule:truthy
54
release:
65
types: [published]
76

87
jobs:
9-
release_automation_hub:
10-
uses: ansible/devtools/.github/workflows/release_ah.yml@main
8+
release:
9+
uses: ansible/ansible-content-actions/.github/workflows/release_ah.yaml@main
1110
with:
1211
environment: ah
1312
secrets:

.github/workflows/tests.yml

Lines changed: 10 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: CI
2+
name: "CI"
33

44
concurrency:
55
group: ${{ github.head_ref || github.run_id }}
@@ -14,45 +14,27 @@ on: # yamllint disable-line rule:truthy
1414

1515
jobs:
1616
changelog:
17-
uses: ansible-network/github_actions/.github/workflows/changelog.yml@main
17+
uses: ansible/ansible-content-actions/.github/workflows/changelog.yaml@main
1818
if: github.event_name == 'pull_request'
19+
build-import:
20+
uses: ansible/ansible-content-actions/.github/workflows/build_import.yaml@main
21+
ansible-lint:
22+
uses: ansible/ansible-content-actions/.github/workflows/ansible_lint.yaml@main
1923
sanity:
20-
uses: ansible-network/github_actions/.github/workflows/sanity.yml@main
21-
with:
22-
matrix_include: "[]"
23-
matrix_exclude: >-
24-
[
25-
{
26-
"ansible-version": "stable-2.14",
27-
"python-version": "3.12"
28-
},
29-
{
30-
"ansible-version": "stable-2.15",
31-
"python-version": "3.12"
32-
},
33-
{
34-
"ansible-version": "stable-2.16",
35-
"python-version": "3.9"
36-
},
37-
{
38-
"ansible-version": "milestone",
39-
"python-version": "3.9"
40-
},
41-
{
42-
"ansible-version": "devel",
43-
"python-version": "3.9"
44-
},
45-
]
24+
uses: ansible/ansible-content-actions/.github/workflows/sanity.yaml@main
4625
all_green:
4726
if: ${{ always() }}
4827
needs:
4928
- changelog
29+
- build-import
5030
- sanity
31+
- ansible-lint
5132
runs-on: ubuntu-latest
5233
steps:
5334
- run: >-
5435
python -c "assert 'failure' not in
5536
set([
5637
'${{ needs.changelog.result }}',
5738
'${{ needs.sanity.result }}',
39+
'${{ needs.ansible-lint.result }}'
5840
])"

0 commit comments

Comments
 (0)