mirror of
https://git.openapi.site/https://github.com/desirecore/config-center.git
synced 2026-06-06 05:50:50 +08:00
- scripts/check-no-ai-attribution.sh:扫描指定 git 范围,命中 AI 身份、Co-Authored-By trailer、Generated/Authored 声明或机器人 emoji 时报错 - scripts/ai-attribution-patterns.txt:外置 AI 工具/厂商关键字清单,便于按需扩展 - .github/workflows/no-ai-attribution.yml:PR (target main) 与 push (main) 时对增量 commit 范围运行扫描 - CLAUDE.md:项目级 commit 身份规范,禁止任何 AI 署名/辅助标记
42 lines
1.2 KiB
YAML
42 lines
1.2 KiB
YAML
name: Block AI Attribution
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [main]
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
scan:
|
|
name: Scan commits for AI authorship markers
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Compute commit range
|
|
id: range
|
|
env:
|
|
EVENT_NAME: ${{ github.event_name }}
|
|
PR_BASE: ${{ github.event.pull_request.base.sha }}
|
|
PR_HEAD: ${{ github.event.pull_request.head.sha }}
|
|
PUSH_BEFORE: ${{ github.event.before }}
|
|
PUSH_AFTER: ${{ github.event.after }}
|
|
run: |
|
|
set -euo pipefail
|
|
if [ "$EVENT_NAME" = "pull_request" ]; then
|
|
range="${PR_BASE}..${PR_HEAD}"
|
|
else
|
|
if [ -z "${PUSH_BEFORE:-}" ] || [ "$PUSH_BEFORE" = "0000000000000000000000000000000000000000" ]; then
|
|
range="${PUSH_AFTER}~1..${PUSH_AFTER}"
|
|
else
|
|
range="${PUSH_BEFORE}..${PUSH_AFTER}"
|
|
fi
|
|
fi
|
|
echo "range=$range" >> "$GITHUB_OUTPUT"
|
|
echo "Scanning range: $range"
|
|
|
|
- name: Run scanner
|
|
run: bash scripts/check-no-ai-attribution.sh '${{ steps.range.outputs.range }}'
|