Skip to content

Commit

Permalink
Merge from mainline (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
madhansansel authored Nov 14, 2024
2 parents c6c6838 + 51fb566 commit fd179d8
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 20 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/sanity_tests_devel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,24 +62,24 @@ jobs:
- name: Install yamllint
run: pip install --user yamllint

- name: Run yamllint
run: |
if [ -s changed_files.txt ]; then
changed_files=$(cat changed_files.txt)
lintable_files=""
for file in $changed_files; do
# Check if the file belongs to the plugins/modules or playbooks directory
if [[ $file == plugins/modules/* || $file == playbooks/* ]]; then
lintable_files="$lintable_files $file"
- name: Run yamllint
run: |
if [ -s changed_files.txt ]; then
changed_files=$(cat changed_files.txt)
lintable_files=""
for file in $changed_files; do
# Check if the file belongs to the plugins/modules or playbooks directory
if [[ $file == plugins/modules/* || $file == playbooks/* ]]; then
lintable_files="$lintable_files $file"
fi
done
if [ -n "$lintable_files" ]; then
yamllint -c .yamllint.yml $lintable_files
else
echo "No relevant files to lint."
fi
done
if [ -n "$lintable_files" ]; then
yamllint -c .yamllint.yml $lintable_files
else
echo "No relevant files to lint."
echo "No changed files to lint."
fi
else
echo "No changed files to lint."
fi
working-directory: ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}}
working-directory: ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}}
12 changes: 11 additions & 1 deletion changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1084,4 +1084,14 @@ releases:
changes:
release_summary: modifications to fix issues '#200'.
minor_changes:
- Removing duplicates in the discovery.py module. snmpRwCommunity property.
- Removing duplicates in the discovery.py module. snmpRwCommunity property.
- Changes in circleci to run test cases in integration branch
- Added support for bulk operations on multiple access points in accesspoint_workflow_manager
- Bug fixes in inventory_workflow_manager
- Enhancements in sda_fabric_devices_workflow_manager.py to support route distribution protocol
- Enhancements in sda_fabric_sites_zones_workflow_manager.py
- Bug fixes in sda_fabric_virtual_networks_workflow_manager.py
- Changes in site_workflow_manager
- accesspoint_workflow_manager - added attribute bulk_update_aps
- sda_fabric_devices_workflow_manager.py - added attribute route_distribution_protocol
- sda_fabric_sites_zones_workflow_manager.py - added attribute site_name_hierarchy and removed attribute site_name
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
namespace: cisco
name: dnac
version: 6.23.0
version: 6.24.0
readme: README.md
authors:
- Rafael Campos <rcampos@altus.cr>
Expand Down

0 comments on commit fd179d8

Please sign in to comment.