mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-07 05:42:57 +00:00
* ci: safe ci using zizmor check Signed-off-by: yihong0618 <zouzou0208@gmail.com> * fix: lines empty Signed-off-by: yihong0618 <zouzou0208@gmail.com> * fix: delete useless code Signed-off-by: yihong0618 <zouzou0208@gmail.com> --------- Signed-off-by: yihong0618 <zouzou0208@gmail.com>
24 lines
496 B
YAML
24 lines
496 B
YAML
name: "Semantic Pull Request"
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- reopened
|
|
- edited
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-20.04
|
|
timeout-minutes: 10
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
persist-credentials: false
|
|
- uses: ./.github/actions/setup-cyborg
|
|
- name: Check Pull Request
|
|
working-directory: cyborg
|
|
run: pnpm tsx bin/check-pull-request.ts
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|