Update Pages #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: Update Pages | |
on: | |
workflow_dispatch: | |
schedule: | |
# Every 3 days at 00:00 | |
- cron: "0 0 */3 * *" | |
jobs: | |
export: | |
name: Download feishu pages | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
branch: main | |
- name: Start export feishu pages | |
env: | |
FEISHU_APP_ID: ${{ secrets.FEISHU_APP_ID }} | |
FEISHU_APP_SECRET: ${{ secrets.FEISHU_APP_SECRET }} | |
FEISHU_SPACE_ID: "7288219896826494980" | |
OUTPUT_DIR: ./feishu-pages | |
URL_STYLE: original | |
BASE_URL: ./ | |
uses: longbridgeapp/feishu-pages@main | |
- uses: oven-sh/setup-bun@v1 | |
- name: Copy Pages to repo | |
run: | | |
bun install | |
bun run setup | |
- name: Setup Git | |
run: | | |
git config --global user.name "Longbridge Whale docs bot" | |
git config --global user.email "[email protected]" | |
- name: Create PR for locales/ updates | |
run: | | |
BRANCH_NAME=update-pages-$(date +'%Y%m%d%H%M%S') | |
git checkout -b $BRANCH_NAME | |
git status | |
git add locales/ | |
git commit -a -m "Commit feishu updated pages to repo" | |
git push origin $BRANCH_NAME | |
# Create Pull Request | |
curl -X POST -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -d '{"title":"Update feishu pages","head":"'$BRANCH_NAME'","base":"main"}' https://api.github.com/repos/${{ github.repository }}/pulls | |
- name: Push feishu-pages/.caches to main branch | |
run: | | |
git add feishu-pages/.caches | |
git config --global user.name "Longbridge Whale docs bot" | |
git config --global user.email "[email protected]" | |
git commit -a -m "Update feishu-pages/.caches" | |
git push origin main |