-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into tpu-guide-rename-deprecated-fn
- Loading branch information
Showing
753 changed files
with
136,028 additions
and
1,189 deletions.
There are no files selected for viewing
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,49 @@ | ||
# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time. | ||
# | ||
# You can adjust the behavior by modifying this file. | ||
# For more information, see: | ||
# https://github.com/actions/stale | ||
name: Mark stale issues and pull requests | ||
|
||
on: | ||
schedule: | ||
# Scheduled to run at 1.30 UTC everyday | ||
- cron: '30 1 * * *' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
stale: | ||
|
||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
steps: | ||
- uses: actions/stale@v9 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
days-before-issue-stale: 14 | ||
days-before-issue-close: 14 | ||
stale-issue-label: "status:stale" | ||
close-issue-reason: not_planned | ||
any-of-labels: "awaiting-contributor-response,cla:no" | ||
stale-issue-message: > | ||
Marking this issue as stale since it has been open for 14 days with no activity. | ||
This issue will be closed if no further activity occurs. | ||
close-issue-message: > | ||
This issue was closed because it has been inactive for 28 days. | ||
Please post a new issue if you need further assistance. Thanks! | ||
days-before-pr-stale: 14 | ||
days-before-pr-close: 14 | ||
stale-pr-label: "status:stale" | ||
stale-pr-message: > | ||
Marking this pull request as stale since it has been open for 14 days with no activity. | ||
This PR will be closed if no further activity occurs. | ||
close-pr-message: > | ||
This pull request was closed because it has been inactive for 28 days. | ||
Please open a new pull request if you need further assistance. Thanks! | ||
# Label that can be assigned to issues to exclude them from being marked as stale | ||
exempt-issue-labels: 'override-stale' | ||
# Label that can be assigned to PRs to exclude them from being marked as stale | ||
exempt-pr-labels: "override-stale" |
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 |
---|---|---|
|
@@ -6,9 +6,7 @@ This guide shows how to make contributions to [tensorflow.org](https://www.tenso | |
|
||
See the | ||
[TensorFlow docs contributor guide](https://www.tensorflow.org/community/contribute/docs) | ||
for guidance. For questions, the | ||
[[email protected]](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs) | ||
mailing list is available. | ||
for guidance. For questions, check out [TensorFlow Forum](https://discuss.tensorflow.org/). | ||
|
||
Questions about TensorFlow usage are better addressed on | ||
[Stack Overflow](https://stackoverflow.com/questions/tagged/tensorflow) or the | ||
|
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 |
---|---|---|
|
@@ -16,7 +16,7 @@ To file a docs issue, use the issue tracker in the | |
[tensorflow/tensorflow](https://github.com/tensorflow/tensorflow/issues/new?template=20-documentation-issue.md) repo. | ||
|
||
And join the TensorFlow documentation contributors on the | ||
[[email protected] mailing list](https://groups.google.com/a/tensorflow.org/forum/#!forum/docs). | ||
[TensorFlow Forum](https://discuss.tensorflow.org/). | ||
|
||
## Community translations | ||
|
||
|
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.