hl-api-changelog/.gitea/workflows/validate-changelog-filenames.yml
yst bf6e7636ac
一些检查失败了
changelog-filename-gate / validate (push) Has been cancelled
fix(workflow): 增加 Changelog 文件名检测器 (#24)
2026-07-23 09:24:42 +08:00

36 行
660 B
YAML

name: changelog-filename-gate
on:
pull_request:
branches:
- main
types:
- opened
- reopened
- synchronize
- edited
push:
branches:
- main
jobs:
validate:
name: validate
runs-on: ubuntu-latest
steps:
- name: Checkout full history
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Run regression tests
run: npm test
- name: Validate new changelog filenames
run: npm run check:filenames -- --event "$GITHUB_EVENT_PATH"