Change export feishu url style to original #25
Workflow file for this run
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: Download feishu pages and create pull request | |
on: | |
push: | |
branches: | |
- feishu/* | |
pull_request: | |
branches: | |
- dev | |
jobs: | |
download_feishu_pages: | |
name: Download feishu pages | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Use feishu pages cache | |
uses: actions/cache@v3 | |
id: feishu_pages_download_cache | |
with: | |
path: ./feishu-pages/.cache | |
key: feishu_pages_download_cache_key | |
- 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 | |
uses: longbridgeapp/feishu-pages@main | |
- uses: oven-sh/setup-bun@v1 | |
- name: Copy feishu pages to repo | |
run: | | |
bun install | |
bun run setup | |
- name: Commit feishu pages to repo | |
run: | | |
git status | |
git add . | |
git config --global user.name "Longbridge Whale docs bot" | |
git config --global user.email "[email protected]" | |
git commit -a -m "Commit feishu updated pages to repo" | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
commit-message: New feishu pages version request review | |
base: dev | |
delete-branch: true | |
branch: ${{github.ref_name}} | |
title: "[Docs] New feishu pages version request review" | |
body: | | |
New feishu pages version request review | |
assignees: ihavecoke |