Sync Notion Page to GitHub #1096
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 Notion Page to GitHub | |
on: | |
schedule: | |
# Runs the action every 30 minutes (adjust as needed) | |
- cron: '*/30 * * * *' | |
workflow_dispatch: # Allows manual trigger of the action | |
jobs: | |
sync-notion: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Install Python & Notion Client | |
run: | | |
sudo apt-get install python3-pip | |
pip3 install notion-client | |
- name: Fetch Notion Page Content | |
env: | |
NOTION_API_KEY: ${{ secrets.NOTION_API_KEY }} # Add Notion API key as a secret in your GitHub repo | |
NOTION_PAGE_ID: ${{ secrets.NOTION_PAGE_ID }} # Add Notion Page ID as a secret in your GitHub repo | |
run: | | |
python3 fetch_notion_content.py | |
- name: Commit Changes | |
run: | | |
git config user.name "github-actions" | |
git config user.email "[email protected]" | |
git add notion-sync/* | |
git commit -m "Updated Notion content" | |
git push | |
continue-on-error: true |