Skip to content

Commit

Permalink
IL-582 silence actionlint nagging
Browse files Browse the repository at this point in the history
  • Loading branch information
thomashashi committed Apr 11, 2023
1 parent d38dc41 commit 2db1ce7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/secret-expiration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
# Set some output to trigger the Slack step
gho = open(os.environ.get('GITHUB_OUTPUT'), 'a')
gho.writelines([f'days_left={days_left}\n'])
if days_left <= ${{ vars.ARM_CLIENT_SECRET_MIN_DAYS_REMAINING }}:
if days_left <= int("${{ vars.ARM_CLIENT_SECRET_MIN_DAYS_REMAINING }}"):
gho.writelines(['do_notify=true\n'])
else:
gho.writelines(['do_notify=false\n'])
Expand Down

0 comments on commit 2db1ce7

Please sign in to comment.