Fast-Forward #33664
This file contains hidden or 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
| name: Fast-Forward | |
| on: | |
| schedule: | |
| - cron: "0 * * * *" | |
| workflow_dispatch: | |
| jobs: | |
| fast-forward: | |
| name: Fast-Forward | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| ref: master | |
| token: ${{ secrets.REPOSITORY_TOKEN }} | |
| - name: Fast-Forward | |
| run: | | |
| git remote add upstream https://github.com/tensorflow/tensorflow.git | |
| git pull --ff-only upstream master | |
| git push origin master |