sync source code from terminal-wiki #11
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
name: Sync specific folders from terminal-wiki | |
on: | |
schedule: | |
- cron: '0 * * * *' | |
workflow_dispatch: | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout wiki repository | |
uses: actions/checkout@v2 | |
with: | |
repository: charanravi-online/wiki | |
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }} | |
- name: Configure user info | |
run: | | |
git config user.email "[email protected]" | |
git config user.name "R Charan" | |
- name: Fetch changes from terminal-wiki | |
run: | | |
git remote add upstream https://github.com/charanravi-online/terminal-wiki.git || true | |
git fetch upstream | |
- name: Checkout specific folders | |
run: | | |
git checkout upstream/main -- src/ requirements.txt setup.py | |
# Use the above line to specify the paths of the folders you want to sync | |
- name: Commit changes | |
run: | | |
git add . | |
git commit -m "Sync specific folders from terminal-wiki" | |
git push origin main |