forked from microsoft/onnxruntime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'microsoft:main' into main
- Loading branch information
Showing
118 changed files
with
6,908 additions
and
1,366 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Close stale issues | ||
on: | ||
# Allows you to dictate when you want this workflow to run using cron syntax (times in UTC) | ||
schedule: | ||
- cron: "0 15 * * *" | ||
# Allows you to run this workflow manually from the Actions tab | ||
# workflow_dispatch: | ||
|
||
jobs: | ||
close-stale-issues: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
# Comma separated list of labels that can be assigned to issues to exclude them from being marked as stale | ||
exempt-issue-labels: contributions welcome, feature request, regression | ||
# Number of days without activity before the actions/stale action labels an issue | ||
days-before-issue-stale: 30 | ||
# Number of days without activity before the actions/stale action closes an issue | ||
days-before-issue-close: 7 | ||
# Label you want to apply to issues that have been inactive for the amount of time specified by days-before-issue-stale | ||
stale-issue-label: "stale" | ||
# Comment that you want to add to issues that are labeled by the actions/stale action | ||
stale-issue-message: "This issue has been automatically marked as stale due to inactivity and will be closed in 7 days if no further activity occurs. If further support is needed, please provide an update and/or more details." | ||
# Comment that you want to add to issues that are closed by the actions/stale action | ||
close-issue-message: "This issue has been automatically closed due to inactivity. Please reactivate if further support is needed." | ||
# If you never want this action to label PRs, set this value to -1 | ||
days-before-pr-stale: -1 | ||
# If you never want this action to close PRs, set this value to -1 | ||
days-before-pr-close: -1 | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.