Skip to content

Commit

Permalink
Merge branch 'main' into clgv_optimize_reports
Browse files Browse the repository at this point in the history
  • Loading branch information
athiruma authored Nov 30, 2023
2 parents beda2e7 + f0e5996 commit 5ae2a44
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
commit = False
tag = True
current_version = 1.1.177
current_version = 1.1.178
tag_name = v{current_version}
message = GitHub Actions Build {current_version}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -336,6 +336,8 @@ def _organise_instance_data(self, resources: list):
for attachment in volume.get('Attachments'):
attachment['AttachTime'] = attachment['AttachTime'].strftime("%Y-%m-%dT%H:%M:%S+00:00")
volume['CreateTime'] = volume['CreateTime'].strftime("%Y-%m-%dT%H:%M:%S+00:00")
if 'Tags' in volume:
del volume['Tags']
organize_data.append(volume)
return organize_data

Expand Down
1 change: 1 addition & 0 deletions jenkins/clouds/aws/daily/policies/run_policies.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ def get_policies(type: str = None):
policies.remove('cost_billing_reports')
policies.remove('cost_explorer_payer_billings')
policies.remove('optimize_resources_report')
policies.remove('spot_savings_analysis')

for region in regions:
for policy in policies:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from os import path
from setuptools import setup, find_packages

__version__ = '1.1.177'
__version__ = '1.1.178'

here = path.abspath(path.dirname(__file__))

Expand Down

0 comments on commit 5ae2a44

Please sign in to comment.