diff --git a/.github/workflows/sanity_tests_devel.yml b/.github/workflows/sanity_tests_devel.yml index 3c80be105..10d1a265f 100644 --- a/.github/workflows/sanity_tests_devel.yml +++ b/.github/workflows/sanity_tests_devel.yml @@ -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}} \ No newline at end of file + working-directory: ./ansible_collections/${{env.NAMESPACE}}/${{env.COLLECTION_NAME}} diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 68166ac2e..05d7c9ae4 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -1084,4 +1084,14 @@ releases: changes: release_summary: modifications to fix issues '#200'. minor_changes: - - Removing duplicates in the discovery.py module. snmpRwCommunity property. \ No newline at end of file + - 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 diff --git a/galaxy.yml b/galaxy.yml index f719fc0d8..935f754c0 100644 --- a/galaxy.yml +++ b/galaxy.yml @@ -1,7 +1,7 @@ --- namespace: cisco name: dnac -version: 6.23.0 +version: 6.24.0 readme: README.md authors: - Rafael Campos