Skip to content

sync source code from terminal-wiki #8

sync source code from terminal-wiki

sync source code from terminal-wiki #8

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