Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup GitHub workflows #655

Merged
merged 30 commits into from
Nov 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
756e703
Cleanup gha
GomathiselviS Nov 6, 2023
e848011
test by removing matrix excludes
GomathiselviS Nov 6, 2023
2372a3a
Rename sanity tests
GomathiselviS Nov 6, 2023
0748264
trigger integration tests
GomathiselviS Nov 6, 2023
587a8a7
Fix ansible-lint workflow
GomathiselviS Nov 6, 2023
38e0711
Fix concurrency
GomathiselviS Nov 6, 2023
17317cf
Add ansible-lint config
GomathiselviS Nov 6, 2023
7fb75d0
Add ansible-lint config
GomathiselviS Nov 6, 2023
30e306b
Fix integration and lint issues
GomathiselviS Nov 6, 2023
7eec169
integration wf
GomathiselviS Nov 6, 2023
1e4ba48
fix yamllint issues
GomathiselviS Nov 6, 2023
bc4c0b8
fix yamllint issues
GomathiselviS Nov 6, 2023
6817b0e
update readme and add ignore-2.16.txt
GomathiselviS Nov 6, 2023
8fc5758
fix ansible-doc
GomathiselviS Nov 6, 2023
03ff14e
Add version
GomathiselviS Nov 7, 2023
eb0389c
Use /dev/random to generate random data
gravesm Nov 7, 2023
f46421e
Fix saniry errors
GomathiselviS Nov 7, 2023
90fd34a
test github_action fix
GomathiselviS Nov 8, 2023
c24e254
Address review comments
GomathiselviS Nov 8, 2023
f8eb747
Remove default types
GomathiselviS Nov 8, 2023
d2c05f0
review comments
GomathiselviS Nov 9, 2023
f54e814
isort fixes
GomathiselviS Nov 9, 2023
ed0425b
remove tags
GomathiselviS Nov 9, 2023
27df26c
Add setuptools to venv
GomathiselviS Nov 9, 2023
c4d46fe
Test gh changes
GomathiselviS Nov 9, 2023
76b6602
update changelog
GomathiselviS Nov 9, 2023
6696308
update ignore-2.16
GomathiselviS Nov 9, 2023
06fac5c
Fix indentation in inventory plugin example
gravesm Nov 10, 2023
10968de
Update .github/workflows/integration-tests.yaml
abikouo Nov 10, 2023
7d75533
Update integration-tests.yaml
abikouo Nov 10, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .ansible-lint
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
profile: production

exclude_paths:
- tests/integration
- tests/sanity
hakbailey marked this conversation as resolved.
Show resolved Hide resolved
21 changes: 21 additions & 0 deletions .github/workflows/changelog.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Changelog
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

on:
pull_request:
types:
- opened
- reopened
- labeled
- unlabeled
- synchronize
branches:
- main
- stable-*

jobs:
changelog:
uses: ansible-network/github_actions/.github/workflows/changelog.yml@main
313 changes: 0 additions & 313 deletions .github/workflows/ci.yml

This file was deleted.

14 changes: 14 additions & 0 deletions .github/workflows/galaxy-import.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: galaxy-import
concurrency:
group: ${{ github.head_ref }}
cancel-in-progress: true

on:
pull_request:
branches:
- main
- stable-*

jobs:
galaxy_importer:
uses: ansible-network/github_actions/.github/workflows/galaxy_importer.yml@main
Loading
Loading