Skip to content

Commit

Permalink
Change API docs schedule from monthly to every 2 weeks (microsoft#22524)
Browse files Browse the repository at this point in the history
### Description
<!-- Describe your changes. -->
Current API docs workflows are scheduled to run monthly, but artifacts
expire after 30 days, which could create issues for 31-day months.
Updating to regenerate artifacts every 2 weeks.


### Motivation and Context
<!-- - Why is this change required? What problem does it solve?
- If it fixes an open issue, please link to the issue here. -->
  • Loading branch information
sophies927 authored Oct 22, 2024
1 parent 8a04ab4 commit 62f99d8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-c-apidocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- include/onnxruntime/core/session/**
- orttraining/orttraining/training_api/include/**
schedule:
- cron: '0 0 1 * *'
- cron: '0 0 1,15 * *'
workflow_dispatch:

concurrency:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-csharp-apidocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
paths:
- csharp/**
schedule:
- cron: '0 0 1 * *'
- cron: '0 0 1,15 * *'
workflow_dispatch:

concurrency:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-java-apidocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
paths:
- java/**
schedule:
- cron: '0 0 1 * *'
- cron: '0 0 1,15 * *'
workflow_dispatch:

concurrency:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-js-apidocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
paths:
- js/common/**
schedule:
- cron: '0 0 1 * *'
- cron: '0 0 1,15 * *'
workflow_dispatch:

concurrency:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-objectivec-apidocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
paths:
- objectivec/**
schedule:
- cron: '0 0 1 * *'
- cron: '0 0 1,15 * *'
workflow_dispatch:

concurrency:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-python-apidocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- onnxruntime/python/**
- docs/python/**
schedule:
- cron: '0 0 1 * *'
- cron: '0 0 1,15 * *'
workflow_dispatch:

concurrency:
Expand Down

0 comments on commit 62f99d8

Please sign in to comment.