Skip to content

Commit 2c16127

Browse files
fix: update action to use the correct script
1 parent daf9621 commit 2c16127

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/api-versions-reminder.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
# Linux date command format
4141
three_months_date=$(date --date="3 months" +"%Y-%m-%d")
4242
fi
43-
./.github/scripts/get_list_files_to_delete.sh "${openapi_spec_url}" "${three_months_date}"
43+
./.github/scripts/get_sunset_apis.sh "${openapi_spec_url}" "${three_months_date}"
4444
# Create a JIRA ticket only if the there is not already a ticket with the same title
4545
- name: Create JIRA Ticket
4646
id: create-jira-ticket
@@ -104,7 +104,7 @@ jobs:
104104
# Linux date command format
105105
one_month_date=$(date --date="1 months" +"%Y-%m-%d")
106106
fi
107-
./.github/scripts/get_list_files_to_delete.sh "${openapi_spec_url}" "${one_month_date}"
107+
./.github/scripts/get_sunset_apis.sh "${openapi_spec_url}" "${one_month_date}"
108108
# Create a JIRA ticket only if the there is not already a ticket with the same title
109109
- name: Create JIRA Ticket
110110
id: create-jira-ticket
@@ -168,7 +168,7 @@ jobs:
168168
# Linux date command format
169169
one_week_date=$(date --date="+1 week" +"%Y-%m-%d")
170170
fi
171-
./.github/scripts/get_list_files_to_delete.sh "${openapi_spec_url}" "${one_week_date}"
171+
./.github/scripts/get_sunset_apis.sh "${openapi_spec_url}" "${one_week_date}"
172172
# Create a JIRA ticket only if the there is not already a ticket with the same title
173173
- name: Create JIRA Ticket
174174
id: create-jira-ticket

0 commit comments

Comments
 (0)