支持磐维数据库 (opengauss) 的 tinyint 数据类型,由于 column_size 非常大,只能转化为 varchar,无… #10
This file contains hidden or 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: Check releasenote links | ||
| on: | ||
| workflow_dispatch: | ||
| schedule: | ||
| - cron: "00 42 * * SUN" | ||
| jobs: | ||
| linkChecker: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| issues: write # required for peter-evans/create-issue-from-file | ||
| steps: | ||
| # Get this repo | ||
| - uses: actions/checkout@v4 | ||
| - name: Link Checker | ||
| id: lychee | ||
| uses: lycheeverse/lychee-action@v2 | ||
| with: | ||
| args: > | ||
| --config lychee.toml | ||
| --exclude https://github.com/StarRocks/starrocks/.* | ||
| "docs/en/release_notes/*.md" "docs/zh/release_notes/*.md" | ||
| - name: Create Issue From File | ||
| if: steps.lychee.outputs.exit_code != 0 | ||
| uses: peter-evans/create-issue-from-file@v5 | ||
| with: | ||
| title: Link Checker Report | ||
| content-filepath: ./lychee/out.md | ||
| labels: doc-feedback | ||