Add ADK-Rust to Machine Learning section (#1) #7
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: (Preview) Update last commit time | |
| on: push | |
| jobs: | |
| update-preview: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run update.py | |
| run: python3 update_time.py && ls -alh && diff README.md test.md --color=always || mv test.md README.md | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@v7 | |
| with: | |
| token: ${{ secrets.CHECKER_PAT }} | |
| add-paths: README.md | |
| commit-message: "[bot] Update last commit time in README.md" | |
| author: action-bot <BurtonQin+github-actions[bot]@users.noreply.github.com> | |
| delete-branch: true | |
| branch: update-commit-time-preview | |
| base: master | |
| title: '[bot] Update last commit time in README.md' | |
| body: Some checkers recently are updated in their repo activies. |