Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/bot-pr-new.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Fetch pull request branch
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }}
ref: ${{ github.event.client_payload.pull_request.head.sha }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:
name: Notebook format
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v1
- uses: actions/checkout@v2
- uses: actions/setup-python@v5
- uses: actions/checkout@v4
- name: Fetch master branch
run: git fetch -u origin master:master
- name: Install tensorflow-docs
Expand All @@ -33,8 +33,8 @@ jobs:
name: Notebook lint
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v1
- uses: actions/checkout@v2
- uses: actions/setup-python@v5
- uses: actions/checkout@v4
- name: Fetch master branch
run: git fetch -u origin master:master
- name: Install tensorflow-docs
Expand All @@ -56,7 +56,7 @@ jobs:
name: Notebook outputs removed
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Fetch master branch
run: git fetch -u origin master:master
- name: Check for output cells
Expand Down
32 changes: 27 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,31 @@
# Python
**/*.pyc
**/*.rws
**/.DS_Store
**/__pycache__/
**/*.pyo
**/*.pyd
**/.Python
**/*.so
**/*.egg
**/*.egg-info/
**/dist/
**/build/
**/.eggs/

# Virtual environments
**/venv/
**/env/
**/ENV/
**/.venv/
**/.python-version

# IDE
**/.idea
**/.ipynb_checkpoints
**/.vscode
**/.DS_Store

# Jupyter
**/.ipynb_checkpoints

# Project specific
**/*.rws
**/proofreading
**/venv
**/.python-version
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ corporate Contributor License Agreement (CLA):

* If you are an individual writing original documentation or source code and
you're sure you own the intellectual property, sign an
[individual CLA](http://code.google.com/legal/individual-cla-v1.0.html).
[individual CLA](https://code.google.com/legal/individual-cla-v1.0.html).
* If you work for a company that wants to allow you to contribute your work, sign
a [corporate CLA](http://code.google.com/legal/corporate-cla-v1.0.html).
a [corporate CLA](https://code.google.com/legal/corporate-cla-v1.0.html).

We can accept your pull requests after you sign the CLA. We can only receive
original documentation and source code from you and other people that have
Expand Down